We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6807d58 commit bf0e9f0Copy full SHA for bf0e9f0
demos/spinner/latlong.html
@@ -21,8 +21,9 @@
21
map.setCenter( latlong() );
22
}
23
$( "#lat, #lng" ).spinner({
24
- precision: 6,
25
- change: position
+ step: .001,
+ change: position,
26
+ stop: position
27
});
28
29
var map = new google.maps.Map( $("#map")[0], {
@@ -44,10 +45,10 @@
44
45
<div class="demo">
46
47
<label for="lat">Latitude</label>
-<input id="lat" name="lat" value="44.797916">
48
+<input id="lat" name="lat" value="44.797">
49
<br>
50
<label for="lng">Longitude</label>
-<input id="lng" name="lng" value="-93.278046">
51
+<input id="lng" name="lng" value="-93.278">
52
53
<div id="map"></div>
54
0 commit comments