Skip to content

Commit

Permalink
Merge pull request #147 from brunob/hotfixes
Browse files Browse the repository at this point in the history
fixes for googlev3 example
  • Loading branch information
brunob committed Jun 5, 2012
2 parents 4d0e7c6 + 99d0b9f commit 7aaa7c7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions examples/googlev3.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@

geocoder = new mxn.Geocoder('googlev3',geocode_return);

// add image overlay
mapstraction.addImageOverlay("over", "http://mapstraction.com/images/santodomingo.png", 50, -70.01544, 18.39777, -69.80567, 18.563517);

// add a marker
var marker = new mxn.Marker(latlon);
mapstraction.addMarker(marker,true);
Expand All @@ -65,7 +62,7 @@

function user_submit() {
var address = {};
address.address = document.getElementById('address').value;
address = document.getElementById('address').value;
geocoder.geocode(address);
}

Expand Down

0 comments on commit 7aaa7c7

Please sign in to comment.