带有按钮的 skobbler (skmaps) 注释

Posted

技术标签:

【中文标题】带有按钮的 skobbler (skmaps) 注释【英文标题】:skobbler (skmaps ) annotation with buttons 【发布时间】:2015-09-15 20:37:17 【问题描述】:

我想在 skmap 上添加注释,如下所示: SKAnnotation annotation1 = new SKAnnotation(p1.id);

注解必须包含 2 个带有相应处理程序的按钮。 我该怎么做?

【问题讨论】:

【参考方案1】:

您可以通过添加带有视图的注释来尝试,在该视图中您可以添加自定义按钮。 以下是演示项目中的代码:

SKAnnotation annotationFromView = new SKAnnotation(15);
annotationFromView.setLocation(new SKCoordinate(-122.423573, 37.761349));
annotationFromView.setMininumZoomLevel(5);
annotationView = new SKAnnotationView();
customView =
        (RelativeLayout) ((LayoutInflater)
getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(
                R.layout.layout_custom_view, null, false);

//If width and height of the view  are not power of 2 the actual size of the
//image will be the next power of 2 of max(width,height).

annotationView.setView(customView);
annotationFromView.setAnnotationView(annotationView);
mapView.addAnnotation(annotationFromView, SKAnimationSettings.ANIMATION_NONE);

【讨论】:

以上是关于带有按钮的 skobbler (skmaps) 注释的主要内容,如果未能解决你的问题,请参考以下文章

SKMaps(Skobbler 地图)集成应用程序上传错误

iOS SKMaps 下载的地图包未在离线模式下显示

SKMaps - 上传到 iTunes Connect 的应用程序错误 - 无效的二进制文件 - 段对齐 - 加密

加载 skobbler 地图时遇到问题

Android - Skobbler 不支持 64 位处理器

SKRouteManager.getInstance().calculateRoute(route);在 SKMaps SDK 2.4 中返回空指针异常