Skip to content

Commit

Permalink
Spinner: Fixed map demo.
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgonzalez committed Sep 14, 2011
1 parent 6807d58 commit bf0e9f0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions demos/spinner/latlong.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
map.setCenter( latlong() );
}
$( "#lat, #lng" ).spinner({
precision: 6,
change: position
step: .001,
change: position,
stop: position
});

var map = new google.maps.Map( $("#map")[0], {
Expand All @@ -44,10 +45,10 @@
<div class="demo">

<label for="lat">Latitude</label>
<input id="lat" name="lat" value="44.797916">
<input id="lat" name="lat" value="44.797">
<br>
<label for="lng">Longitude</label>
<input id="lng" name="lng" value="-93.278046">
<input id="lng" name="lng" value="-93.278">

<div id="map"></div>

Expand Down

0 comments on commit bf0e9f0

Please sign in to comment.