GPS Link Custom Action

GPS Link Custom Action

Here's a custom action you can use to make a popup window using google maps

void GPS(int zID)
{
    query_address = MASTER_FORM[ID == input.zID].ADDRESS_for_GPS;
    query_address = encodeUrl(query_address);
    openUrl("http://maps.google.com/?q=" + query_address, "Popup window");
}

I prefered the way the old url builder worked. It took me some time to figure out how to set-up the new url builder to work:



Cheers,
John Whitney