Merge pull request #28 from Sleavely/patch-1

Added accuracy to the marker title
This commit is contained in:
Remy Sharp 2012-01-11 01:30:36 -08:00
commit 509e201f3e
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ function success(position) {
var marker = new google.maps.Marker({ var marker = new google.maps.Marker({
position: latlng, position: latlng,
map: map, map: map,
title:"You are here!" title:"You are here! (at least within a "+position.coords.accuracy+" meter radius)"
}); });
} }