I am trying to enable Code Assist for the Google Maps API v3 in Aptana3. This does not seem to work.
I followed the instructions on this page :
Drop the VSDoc files into your web project.
V3 Map APIs: gmapvsdoc.codeplex.com
As indicated, I got the zip file from the Google Maps API 3 Visual Studio Intellisense Helper
I extracted google-maps-3-vs-1-0.js and google-maps-3-vs-1-0-vsdoc.js in the scripts in my project (PHP project).
This is how I included the API in my html file:
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="scripts/google-maps-3-vs-1-0.js"></script>
The API works fine. I can access all its functions. However, when I print the "map". (after initializing the variable with var map = new google.maps.Map (...)) Aptana has no suggestions to help me.
Is Aptana3 compatible with the Google Maps v3 API?
Did I do something wrong?
Maybe because I also use jQuery Code Assist?
source
share