本文整理汇总了Java中com.google.android.gms.maps.model.CircleOptions.visible方法的典型用法代码示例。如果您正苦于以下问题:Java CircleOptions.visible方法的具体用法?Java CircleOptions.visible怎么用?Java CircleOptions.visible使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.android.gms.maps.model.CircleOptions
的用法示例。
在下文中一共展示了CircleOptions.visible方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createCircle
import com.google.android.gms.maps.model.CircleOptions; //导入方法依赖的package包/类
/**
* Create circle
* @param args
* @param callbackContext
* @throws JSONException
*/
@SuppressWarnings("unused")
private void createCircle(final JSONArray args, final CallbackContext callbackContext) throws JSONException {
final CircleOptions circleOptions = new CircleOptions();
int color;
JSONObject opts = args.getJSONObject(1);
if (opts.has("center")) {
JSONObject center = opts.getJSONObject("center");
circleOptions.center(new LatLng(center.getDouble("lat"), center.getDouble("lng")));
}
if (opts.has("radius")) {
circleOptions.radius(opts.getDouble("radius"));
}
if (opts.has("strokeColor")) {
color = PluginUtil.parsePluginColor(opts.getJSONArray("strokeColor"));
circleOptions.strokeColor(color);
}
if (opts.has("fillColor")) {
color = PluginUtil.parsePluginColor(opts.getJSONArray("fillColor"));
circleOptions.fillColor(color);
}
if (opts.has("strokeWidth")) {
circleOptions.strokeWidth(opts.getInt("strokeWidth") * this.density);
}
if (opts.has("visible")) {
circleOptions.visible(opts.getBoolean("visible"));
}
if (opts.has("zIndex")) {
circleOptions.zIndex(opts.getInt("zIndex"));
}
Circle circle = map.addCircle(circleOptions);
String id = "circle_" + circle.getId();
this.objects.put(id, circle);
JSONObject result = new JSONObject();
result.put("hashCode", circle.hashCode());
result.put("id", id);
callbackContext.success(result);
}