0

我想在我的网站主页上嵌入谷歌地图。我在我的 Joomla 上使用以下代码!地点

mosmap msid='211583848080531580036.0004c74a22231f20dfa00'|lat='19.997023 '|lon='73.790102'|width='900'|height='650'|zoom='12'

如何让此代码在非 joomla 站点中工作?

4

2 回答 2

1

Google 地图允许您通过插入 HTML 片段将地图嵌入网页。有关将 Google 地图嵌入页面的更多信息,请访问https://support.google.com/maps/answer/72644

在您的情况下,HTML 片段将是这样的:

<iframe width="900" height="650" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.google.com/maps?q=19.997023,73.790102&amp;ie=UTF8&amp;t=m&amp;ll=19.996902,73.790102&amp;spn=0.104853,0.154324&amp;z=12&amp;output=embed"></iframe>
于 2013-09-04T11:06:40.503 回答
0

从 Google 提供的 Javascript 教程开始。

https://developers.google.com/maps/documentation/javascript/tutorial

于 2013-09-04T05:50:19.827 回答