我遇到了一个具体问题。我正在创建一个必须保存的应用程序,然后从数据库中获取特定的locatons并在GoogleMap上重新创建polly行。我可以使用哪些工具,库或技术来实现这一目标?
答案 0 :(得分:1)
您可以使用Google Maps API Utility Library中的PolyUtils
方法:
PolyUtils.encode
方法将List<LatLng>
编码为您可以存储在数据库中的String
。PolyUtils.decode
方法将String
解码为您可以使用地图管理的List<LatLng>
。从评论中更新:
您需要添加一个依赖项(来自the documentation):
dependencies {
compile 'com.google.maps.android:android-maps-utils:0.4+'
}