The post stated "On June 22, 2016, Google announced that the Google Maps API no longer supports keyless access".
While this may be the case if you are still trying to use the browser that Alpha calls internally using any methods that use the Google Maps API , it is not the case with calling google maps in a browser yourself.
This has been working for me since IE 11 came out. I hate IE anyway.
For a list of example url calls see https://gearside.com/easily-link-to-...w-google-maps/Code:'Date Created: 30-Mar-2016 11:47:14 AM 'Last Updated: 30-Mar-2016 11:47:14 AM 'Created By : ShopCal 'Updated By : ShopCal dim url_var as c = "https://www.google.com/maps/place/" if customers->SHIP_ADDRESS_1 > "" then url_var = url_var+alltrim(customers->SHIP_ADDRESS_1) if customers->SHIP_ADDRESS_2 > "" then url_var = url_var+"+"+alltrim(customers->SHIP_ADDRESS_2) end if if customers->SHIP_CITY > "" then url_var = url_var+"+"+alltrim(customers->SHIP_CITY) end if if customers->SHIP_STATE_REGION > "" then url_var = url_var+"+"+alltrim(customers->SHIP_STATE_REGION) end if if customers->SHIP_POSTAL_CODE > "" then url_var = url_var+"+"+alltrim(customers->SHIP_POSTAL_CODE) end if end if sys_open(URL_var)
Bookmarks