gpt4 book ai didi

google-maps - Google Maps SDK Xamarin.iOS 通过 Storyboard 在 UIView 中显示 MapView

转载 作者:行者123 更新时间:2023-12-04 15:22:29 25 4
gpt4 key购买 nike

我正在为我的 Xamarin.iOS 应用程序使用 Google Maps SDK,但我遇到了问题。

我想将 MapView 放入特定的 UIView(在 Storyboard 上创建),这并不像预期的那么容易。

目前我试图将MapView 类放入我的UIView 类(在 native iOS 开发中它是一个解决方案),但没有成功。

我也试过做这样的事情:

//init google SDK stuff
MyViewWhereIWantToPutGoogleMaps.AddSubview(MapView); // and the same,no effect

有什么想法吗?谢谢。

最佳答案

请记住,您需要为 MapView 对象指明 CGRect。

如果您希望它覆盖 MyViewWhereIWantToPutGoogleMaps 中的整个空间,您只需执行以下操作:

var frame = MyViewWhereIWantToPutGoogleMaps.Frame;
var googleMaps = new Google.Maps.MapView (new CoreGraphics.CGRect(0, 0, frame.Width, frame.Height));

MyViewWhereIWantToPutGoogleMaps.AddSubview (googleMaps);

希望这有帮助。-

关于google-maps - Google Maps SDK Xamarin.iOS 通过 Storyboard 在 UIView 中显示 MapView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42333975/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com