【发布时间】:2015-06-29 09:37:31
【问题描述】:
我能够实现SKAnnotation 在skmaps 中设置单个注释
现在我只想在skmaps map android中添加多个注释
所以这里是代码 sn-p .. 任何帮助将不胜感激 ....
SKAnnotation annotation1 = new SKAnnotation(10);
// set annotation location
annotation1.setLocation(new SKCoordinate(-122.4200, 37.7765));
// set minimum zoom level at which the annotation should be visible
annotation1.setMininumZoomLevel(5);
// set the annotation's type
annotation1.setAnnotationType(SKAnnotation.SK_ANNOTATION_TYPE_RED);
// render annotation on map
mapView.addAnnotation(annotation1, SKAnimationSettings.ANIMATION_NONE);
我到处看了看,没有得到任何有用的信息来说明如何实现这个.....
【问题讨论】:
标签: android google-maps marker skmaps skobbler-maps