Posts by Vagner Lucas Gomes • 46 points
3 posts
-
1
votes3
answers1854
viewsA: How to return points within lightning?
I did this in a project where I used the distance between two points ma taking into account the curvature of the earth, at small distances I see no problem, but at larger distances this error is…
-
1
votes2
answers3719
viewsA: Calculate Distances Api Google Maps v3 Automatically in a Loop
The Spherical Google maps V3 API calculates this for you, when you pass a Latlng array. var polyLengthInMeters = google.maps.geometry.spherical.computeArea(polygon.getPath().getArray());…
-
1
votes1
answer505
viewsA: how to add a simple polylines to the Map Api Gmaps v3?
var flightPath = new google.maps.Polyline({ path: pontos, strokeColor: '#FF0000', strokeOpacity: 1.0, strokeWeight: 3, map: map }); You do not need the comma in the last parameter. map = new…