博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Unity3d 嵌入GoogleMap
阅读量:6494 次
发布时间:2019-06-24

本文共 1904 字,大约阅读时间需要 6 分钟。

原地址“http://cl314413.blog.163.com/blog/static/190507976201442371753142/

新建工程导入Google Maps for Unity包

打开自带Demo场景,会发现报错了。

大致看了看好像是不能解析HTTP。

然后找寻方法,点开README.txt.

1 Google Maps for Unity 2 --------------------- 3  4 Support: forum.differentmethods.com 5  6 Note: Google Maps for Unity requires UniWeb: http://u3d.as/1Cw 7 This is because the Google Maps API requires the use and respect of cache 8 control headers, which are unsupported by the builtin WWW class. 9 10 Because of this, this package will not work in WebPlayer builds as google11 does not provide a Cross Domain policy server.12 13 Getting Started14 ---------------15 16 1. Assign the GoogleMap component to your game object.17 18 2. Setup the parameters in the inspector.19 2.1 If you want to control the center point and zoom level, make sure that20     the Auto Locate Center box is unchecked. Otherwise the center point is21     calculated using Markers and Path parameters.22 23 3. Each location field can be an address or longitude / latitude.24 25 4. The markers add pins onto the map, with a single letter label. This label26 will only display on mid size markers.27 28 5. The paths add straight lines on the map, between a set of locations.29 30 6. For in depth information on how the GoogleMap component uses the Google31 Maps API, see: 32 https://developers.google.com/maps/documentation/staticmaps/#quick_example

可以看到README中标红的第六行告诉我们,unity谷歌地图需要uniweb支持。

然后继续在应用商店搜索,然后下载导入包:

导入包后,可以看到无措可运行:

 

新建一个场景,添加一个Plane(平面)用来显示地图,添加一个直射光。(用于测试,没做自适应,所以调整平面与相机的距离)

将GoogleMaps中的GoogleMap.cs脚本拖入Plane。

作如图的参数修改:

取消Auto Lacate Center勾选。

填写Center Location的经纬度(设置地图显示的中心)

设置Zoom值为16(用于显示范围)

设置Map Type为RoadMap

设置Size为1024

勾选Double Resolution

Markers是地图中的标记组,设置个数为1(可以为多个),设置标记的大小,颜色和位置(经纬度)

Paths是地图中的路径组,设置个数为1(可以为多个),设置宽度,颜色,填充色(覆盖的范围),选择路经地点(设置为3个地点的经纬度)

点击运行如图:

 

PS:获取具体地理位置的经纬度方法:

点开网页google地图,找到要选择的地点最大化,右键该地点,选择"这儿是什么?",地点上方出现绿色箭头,鼠标悬浮出现经纬度。

转载地址:http://ctkyo.baihongyu.com/

你可能感兴趣的文章
UIScrollView中的手势
查看>>
递归和迭代的差别
查看>>
基于jquery的可拖动div
查看>>
可以简易设置文字内边距的EdgeInsetsLabel
查看>>
[詹兴致矩阵论习题参考解答]习题1.3
查看>>
Android Fragment的使用
查看>>
mysql半同步复制实现
查看>>
沙朗javascript总结一下(一)---基础知识
查看>>
js深入研究之函数内的函数
查看>>
LeetCode:4_Median of Two Sorted Arrays | 求两个排序数组的中位数 | Hard
查看>>
uva-12657 - Boxes in a Line(双向链表)
查看>>
python之commands模块
查看>>
android应用开发--------------看RadioGroup源代码,写相似单选选项卡的集成控件(如底部导航,tab等等)...
查看>>
GCD 和延时调用
查看>>
LeetCode - Binary Tree Level Order Traversal
查看>>
FTP协议完全详解
查看>>
iOS:实现图片的无限轮播
查看>>
【C语言天天练(十五)】字符串输入函数fgets、gets和scanf
查看>>
【环境配置】配置sdk
查看>>
accept()
查看>>