28 lines
456 B
Markdown
28 lines
456 B
Markdown
# Google 地图嵌入代码模板
|
||
|
||
## 基础嵌入
|
||
|
||
```html
|
||
<iframe
|
||
src="https://www.google.com/maps?q=[地址]&output=embed"
|
||
width="600"
|
||
height="450"
|
||
style="border:0;"
|
||
allowfullscreen=""
|
||
loading="lazy">
|
||
</iframe>
|
||
```
|
||
|
||
## 使用 API Key(推荐)
|
||
|
||
```html
|
||
<iframe
|
||
width="600"
|
||
height="450"
|
||
style="border:0;"
|
||
loading="lazy"
|
||
allowfullscreen
|
||
src="https://www.google.com/maps/embed/v1/place?key=YOUR_API_KEY&q=PLACE_ID">
|
||
</iframe>
|
||
```
|