Saturday, August 29, 2009

Displays a route between locations on a map.

/**
* Displays a route between locations on a map.
*/
private MenuItem viewRouteItem = new MenuItem("View Route" , 3000, 10)
{
public void run()
{
StringBuffer stringBuffer = new StringBuffer("");
stringBuffer.append("");
stringBuffer.append("");
stringBuffer.append("
");

Invoke.invokeApplication(Invoke.APP_TYPE_MAPS, new MapsArguments( MapsArguments.ARG_LOCATION_DOCUMENT, stringBuffer.toString()));
}
};

No comments: