给定 4 个点的坐标,在 google 地图 API 上创建方形网格
Creating a Square grid on the google maps API given the coordinates of the 4 points
我是 android 工作室的新手,我正在尝试构建一个基于地图的 application.One 该应用程序的功能是在给定(纬度, map.Upon 关于这个主题的研究的 4 个点中的经度)我找到的大部分答案在整个地图上创建了一个正方形网格,这不是 required.Any 对此的帮助非常感谢。
Link 类似这样的问题:
使用Polyline在GoogleMap上绘制矩形。
示例代码:
// Instantiates a new Polyline object and adds points to define a rectangle
PolylineOptions rectOptions = new PolylineOptions()
.add(new LatLng(37.35, -122.0))
.add(new LatLng(37.45, -122.0)) // North of the previous point, but at the same longitude
.add(new LatLng(37.45, -122.2)) // Same latitude, and 30km to the west
.add(new LatLng(37.35, -122.2)) // Same longitude, and 16km to the south
.add(new LatLng(37.35, -122.0)); // Closes the polyline.
// Get back the mutable Polyline
Polyline polyline = myMap.addPolyline(rectOptions);
Check 这个link 画出不同的形状。
我是 android 工作室的新手,我正在尝试构建一个基于地图的 application.One 该应用程序的功能是在给定(纬度, map.Upon 关于这个主题的研究的 4 个点中的经度)我找到的大部分答案在整个地图上创建了一个正方形网格,这不是 required.Any 对此的帮助非常感谢。
Link 类似这样的问题:
使用Polyline在GoogleMap上绘制矩形。
示例代码:
// Instantiates a new Polyline object and adds points to define a rectangle
PolylineOptions rectOptions = new PolylineOptions()
.add(new LatLng(37.35, -122.0))
.add(new LatLng(37.45, -122.0)) // North of the previous point, but at the same longitude
.add(new LatLng(37.45, -122.2)) // Same latitude, and 30km to the west
.add(new LatLng(37.35, -122.2)) // Same longitude, and 16km to the south
.add(new LatLng(37.35, -122.0)); // Closes the polyline.
// Get back the mutable Polyline
Polyline polyline = myMap.addPolyline(rectOptions);
Check 这个link 画出不同的形状。