Rossko, Thanks for the prompt reply, I have changed my code to include the additional parameter:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>g</title> </head> <body> <script type="text/javascript" src="http://www.google.com/jsapi? key=ABCDABQIAAAA1u6mLIOVHlEf2D8Se6LkbxTTW9YKqyjXb_AE4mTYNqJKHpVTEhQI6DMoky6r5hhAKUCtBT- bjK5wWQEFG"></script> <script type="text/javascript"> try { google.load("maps", "2", { "other_params": "sensor=false" }); google.setOnLoadCallback(BuildMap()); } catch (e) { alert(e); } function BuildMap() { mMap = new google.maps.Map2(document.getElementById ("map")); mMap.enableContinuousZoom(); mMap.setCenter(new GLatLng(53.435719, -7.877197), 7); } </script> <div id="map"></div> </body> </html> However I still get the same error message. On Nov 18, 9:16 am, Rossko <[email protected]> wrote: > > google.load("maps", "2"); > > Although this documentation - > http://code.google.com/apis/maps/documentation/#AJAX_Loader > hasn't been updated (Pamela?)... > there is a requirement to specify another parameter > http://code.google.com/apis/maps/documentation/#SpecifyingSensor -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=.
