在地图上绘制圆圈很简单:
https://developers.google.com/maps/documentation/javascript/examples/circle-simple
但是,如果我在一个点周围绘制一个圆圈,我也想向用户指出半径有多大,是否有办法在圆圈上添加文字(例如在周边),表明半径是多少?
答案 0 :(得分:0)
添加一个好的时尚文字谷歌地图的简单方法是使用谷歌地图实用程序,在你的情况下yh js-map-label
https://github.com/googlemaps/js-map-label
请参阅此示例页面view-source:https://googlemaps.github.io/js-map-label/examples/maplabel.html
var mapLabel = new MapLabel({
text: 'Test',
position: new google.maps.LatLng(34.03, -118.235),
map: map,
fontSize: 35,
align: 'right'
});
mapLabel.set('position', new google.maps.LatLng(34.03, -118.235));
var marker = new google.maps.Marker();
marker.bindTo('map', mapLabel);
marker.bindTo('position', mapLabel);
marker.setDraggable(true);