1

我有以下带有谷歌地图的 iframe:
在此处输入图像描述
如您所见,谷歌地图在这里看起来更旧:方形按钮和控件。

我想要的是这样的:
在此处输入图像描述
更好看的谷歌地图。圆形按钮和控件...
我如何创建这样的东西?我一直在尝试解决这个问题,但没有任何成功。
谢谢!

4

3 回答 3

11
<!-- Embed Google Maps Start -->
<iframe width="550" height="500" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?q=mesco,heuvelstraat 95,tilburg, nederland&layer=tc&t=m&z=18&source=embed&output=svembed"></iframe>
<!-- Embed Google Maps End -->
<!--Parameters:
---------------------
q= enter full address here or latitude+longitude e.g. (street name, city, county/state, country)
layer= (t = traffic | c = streetview | tc = both) - show map layer type
t= (m = normal map | k = satellite | h = hybrid | p = terrain) - Sets the kind of map shown
z= (1 - 23) - map zoom level. 23 value indicates fully zoomed in. (default is 18)
width= (value) - height of gmaps
height= (value) - width of gmaps-->
于 2013-08-22T13:35:06.730 回答
4

也许您应该考虑使用 Google Maps Javascript API。基本使用并不难,它以您想要的方式显示控件。

示例:https ://developers.google.com/maps/documentation/javascript/examples/?hl=en

于 2013-05-29T10:34:18.523 回答
0

对于 javascript API,您需要一个 API KEY。然后,您将不得不选择一个计费计划。

所以我不明白为什么一方面你可以直接从谷歌地图中免费选择 iframe,另一方面,当你想直接使用 API 时,你必须输入信用卡。

就个人而言,我回到了第一个选项。非常快速地实现基本使用。

于 2020-11-11T13:50:00.673 回答