Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
28
rated 0 times [  33] [ 5]  / answers: 1 / hits: 82654  / 7 Years ago, fri, july 7, 2017, 12:00:00

I have the following in my html page:



    <script type=text/javascript
src=http://maps.googleapis.com/maps/api/js?libraries=geometry&sensor=false>
</script>
<script
async defer
src=https://maps.googleapis.com/maps/api/js?key=hUnDAdjYG_Wz7u2qL6unHqfBOmvaZ0H1Mg&callback=initMap>
</script>


First link is for Google's API Geometry Library , and the second initialises and draws the map.



I'm getting the error You have included the Google Maps API multiple times on this page. This may cause unexpected errors.



I know that this can be fixed by calling just one script, and changing the parameters, see Fixing "You have included the Google Maps API multiple times on this page. This may cause unexpected errors." I don't know how to replicate the answer for my problem though.


More From » html

 Answers
115

You can include one link:



<script type=text/javascript
src=http://maps.googleapis.com/maps/api/js?libraries=geometry&sensor=false&key=AIzaSyBSsKUzYG_Wz7u2qL6unHqfBOmvaZ0H1Mg&callback=initMap>
</script>


Basically merging the url parameters in both the links.


[#57181] Wednesday, July 5, 2017, 7 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
lexusg

Total Points: 718
Total Questions: 106
Total Answers: 104

Location: Palestine
Member since Tue, Jul 20, 2021
3 Years ago
;