Vara Prasad.M
Vara Prasad.M

Reputation: 1550

How to use Google Map API V3

I want to use the google Maps API v3. Where can i get the information for using the Google Maps in my application through the javascript without the API Key?

Upvotes: 0

Views: 9204

Answers (2)

ddrace
ddrace

Reputation: 717

The API key is no longer necessary with v3.

You can insert a reference to the API like so:

<script type="text/javascript" 
       src="http://maps.google.com/maps/api/js?sensor=false">
</script> 

Upvotes: 2

Related Questions