打开浏览器URL

 1 str URL;
 2 #DEFINE.MapURL('http://maps.google.com/maps?q=')
 3 ;
 4 if (!Address.QVS_Latitude || !Address.QVS_Longitude)
 5 {
 6   SmmUtility::GoogleMap(Address);
 7 }
 8 else
 9 {
10   URL = Address.QVS_Latitude;
11   URL += "," + Address.QVS_Longitude;
12 
13   URL = #MapURL + URL;
14   infolog.urlLookup(URL);
15 }
原文地址:https://www.cnblogs.com/Jinnchu/p/2663351.html