Cfmap 2016 Google api
Is anyone experiencing any non-display issues with coldfusion maps/Google map API?
I am using coldfusion 2016 on a windows 10 laptop. My maps are not showing up in real time on my PC or on my smart phone Whenever I make it live. It is showing up fine on my PC in the development mode.
What I am trying to accomplish is to dynamically produce map markers based on the address of our club members. Could I be missing something? Or is there an easier alternative to Google maps that I can dynamically produce the same results using another map provider?
My application.cfc page
<cfset this.googlemapkey="AIzaSyDy_iL-h-2CxckkV4dh-agNjbMLHFHu0pQ">
On my locations.cfm page
<cfmap name="fruit" height="300" width="1200" centeraddress="714 W. Main st. Richmond, va 23219">
<cfmapitem name="my_address" markercolor="cccccc" address="511 W. Marshall St. Richmond, Va 23220">
<cfif #session.user_id# EQ "#scois_verify.scois#">
Google Maps
<cfmap name="Fruit Map" height="600" markercolor="db0f0f" width="900" scrollwheelzoom="true" zoomlevel="11" centerAddress="410 E. Main Street, Richmond, VA 23219" tip="Base 1">
<cfloop query="coicontact">
<cfif #coicontact.schoollt# EQ "1">
<cfmapitem name="#coicontact.clubmember#" markercolor="b24e01" address="#coicontact.home#" showmarkerwindow="true" tip="#coicontact.clubmember#" />
<cfelseif #coicontact.schoollt# EQ "2"><cfmapitem name="#coicontact.clubmember#" markercolor="f29a57" address="#coicontact.home#" showmarkerwindow="true" tip="#coicontact.clubmember#" />
<cfelseif #coicontact.schoollt# EQ "3"><cfmapitem name="#coicontact.clubmember#" markercolor="f4dc7a" address="#coicontact.home#" showmarkerwindow="true" tip="#coicontact.clubmember#" />
<cfelse><cfmapitem name="#coicontact.clubmember#" markercolor="0f1cdb" address="#coicontact.home#" showmarkerwindow="true" tip="#coicontact.clubmember#" /></cfif>
</cfloop>
</cfmap><cfelse></cfif>
