如何在谷歌地图上绘制国家政策或国家边界线?现在我只有
MapView mapView = (MapView)findViewById(R.id.mapView);
mapView.setBuiltInZoomControls(true);
MapController mapController = mapView.getController();
`
发布于 2012-03-13 14:54:44
Google Maps Javascript API有一个叫做Overlays
的东西,你可以在其中添加Polygon
覆盖到你的地图。但我不确定这是否也适用于Android。如果您想探索更多相关内容,这里是link。
发布于 2012-03-13 18:32:43
一种建议是将地图加载到Webview中,然后使用此Google Polygons V3 Javascript Code http://code.google.com/apis/ajax/playground/#polygons_v3在所需位置绘制多边形
https://stackoverflow.com/questions/9679273
复制相似问题