当前位置: 首页>>代码示例>>Java>>正文


Java Polyline.getId方法代码示例

本文整理汇总了Java中com.google.android.gms.maps.model.Polyline.getId方法的典型用法代码示例。如果您正苦于以下问题:Java Polyline.getId方法的具体用法?Java Polyline.getId怎么用?Java Polyline.getId使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.google.android.gms.maps.model.Polyline的用法示例。


在下文中一共展示了Polyline.getId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: remove

import com.google.android.gms.maps.model.Polyline; //导入方法依赖的package包/类
/**
 * Remove the polyline
 * @param args
 * @param callbackContext
 * @throws JSONException
 */
@SuppressWarnings("unused")
private void remove(final JSONArray args, final CallbackContext callbackContext) throws JSONException {
  String id = args.getString(1);
  Polyline polyline = this.getPolyline(id);
  if (polyline == null) {
    this.sendNoResult(callbackContext);
    return;
  }
  this.objects.remove(id);
  
  id = "polyline_bounds_" + polyline.getId();
  this.objects.remove(id);
  
  polyline.remove();
  this.sendNoResult(callbackContext);
}
 
开发者ID:AdrianBZG,项目名称:PhoneChat,代码行数:23,代码来源:PluginPolyline.java

示例2: onPolylineClick

import com.google.android.gms.maps.model.Polyline; //导入方法依赖的package包/类
private void onPolylineClick(Polyline polyline, LatLng point) {
  String overlayId = "polyline_" + polyline.getId();
  this.onOverlayEvent("overlay_click", overlayId, point);
}
 
开发者ID:AdrianBZG,项目名称:PhoneChat,代码行数:5,代码来源:GoogleMaps.java

示例3: createPolyline

import com.google.android.gms.maps.model.Polyline; //导入方法依赖的package包/类
/**
 * Create polyline
 * @param args
 * @param callbackContext
 * @throws JSONException 
 */
@SuppressWarnings("unused")
private void createPolyline(final JSONArray args, final CallbackContext callbackContext) throws JSONException {
  final PolylineOptions polylineOptions = new PolylineOptions();
  int color;
  LatLngBounds.Builder builder = new LatLngBounds.Builder();
  
  JSONObject opts = args.getJSONObject(1);
  if (opts.has("points")) {
    JSONArray points = opts.getJSONArray("points");
    List<LatLng> path = PluginUtil.JSONArray2LatLngList(points);
    int i = 0;
    for (i = 0; i < path.size(); i++) {
      polylineOptions.add(path.get(i));
      builder.include(path.get(i));
    }
  }
  if (opts.has("color")) {
    color = PluginUtil.parsePluginColor(opts.getJSONArray("color"));
    polylineOptions.color(color);
  }
  if (opts.has("width")) {
    polylineOptions.width(opts.getInt("width") * this.density);
  }
  if (opts.has("visible")) {
    polylineOptions.visible(opts.getBoolean("visible"));
  }
  if (opts.has("geodesic")) {
    polylineOptions.geodesic(opts.getBoolean("geodesic"));
  }
  if (opts.has("zIndex")) {
    polylineOptions.zIndex(opts.getInt("zIndex"));
  }
  
  Polyline polyline = map.addPolyline(polylineOptions);
  String id = "polyline_" + polyline.getId();
  this.objects.put(id, polyline);

  String boundsId = "polyline_bounds_" + polyline.getId();
  this.objects.put(boundsId, builder.build());
  
  JSONObject result = new JSONObject();
  result.put("hashCode", polyline.hashCode());
  result.put("id", id);
  callbackContext.success(result);
}
 
开发者ID:AdrianBZG,项目名称:PhoneChat,代码行数:52,代码来源:PluginPolyline.java


注:本文中的com.google.android.gms.maps.model.Polyline.getId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。