google maps phpsqlajax_v3 page
I am creating an app for mobile devices. Part of the app gets lat/long info from database and shows on the map, it works similar to what you see above.
I read that I must have a API key to use maps, and also I do plan to release a paid version along with a free version, I would need开发者_如何学Python a commercial api key too.
Now my question, by looking through the source code on the link above, where would I insert my api key?
if you use the V3 for google map then see this
Note: This version of the Google Maps JavaScript API no longer needs API keys!
and as google declare google map v2
Google Maps JavaScript API V2 (Deprecated)
if you use this then see this
<script type="text/javascript" src="http://www.google.com/jsapi?key=ABCDEFG"></script>
here in the above script you have to pass the map key
if you developing application for mobile application please specify the more about that like for android, iphone etc. and specify appropriate tag with the question
In Google Map version 3, there is no api key needed. See documentation:
http://code.google.com/apis/maps/documentation/javascript/
And before going for a paid version see this.
精彩评论