我是 iOS 平台的新手,我试图将谷歌地图用于 iOS 应用程序。我在 XE5 \RAD Studio\12.0\Samples\MobileCodeSnippets\Location 中找到了示例这可行,但如何隐藏谷歌地图上的控件。
**A)**如何使用 URL 链接禁用谷歌默认控件:禁用默认控件是 http://www.w3schools.com/googleAPI/google_maps_controls.asp
我试过这样
const
LGoogleMapsURL: String = 'https://maps.google.com/maps?q=%s,%s&output=embed';
var
sLatitude ,sLongitude : string;
begin
sLatitude := 'Latitude: ' + '15.4989';
sLongitude := 'Longitude: ' + '73.8278';
WebBrowser1.Navigate(Format(LGoogleMapsURL, [sLatitude, sLongitude]));
end;
但是我如何使用disableDefaultUI:true删除默认控件和地图?我曾尝试过这样的事情
maps.google.com/maps?z=12&t=m&q=loc:38.9419&style=feature:all|element:labels|visibility:off
没有控制
带控件
B)德尔福 XE4/XE5 的 Goodle SDK 或德尔福 iOS 的谷歌地图组件可以告诉我如何使用谷歌地图 API 在 iOS 中使用谷歌地图吗?像https://developers.google.com/maps/documentation/ios/
我找到了iOS 组件,但他们有苹果地图