Create README.md
This commit is contained in:
parent
e9eb60f7ae
commit
cf3787053f
40
README.md
Normal file
40
README.md
Normal file
@ -0,0 +1,40 @@
|
||||
# Openstreetmap custom tag map
|
||||
|
||||
Label to generate the openstreetmap iframe from the country and region.
|
||||
|
||||
## Install
|
||||
|
||||
### 1 Add Javascript dependencies.
|
||||
|
||||
- Axios
|
||||
- Riot
|
||||
- Riot compiler
|
||||
|
||||
``` html
|
||||
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/riot/3.13.2/riot.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/riot/3.13.2/riot+compiler.min.js"></script>
|
||||
<script src="map.tag" type="riot/tag"></script>
|
||||
```
|
||||
|
||||
### 2 Mount Riot
|
||||
|
||||
``` html
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
riot.mount('*')
|
||||
});
|
||||
</script>
|
||||
```
|
||||
|
||||
### 3 Download and link the label template
|
||||
|
||||
``` html
|
||||
<script src="map.tag" type="riot/tag"></script>
|
||||
```
|
||||
|
||||
### 4 Add the HTML tag with your settings
|
||||
|
||||
``` html
|
||||
<map address="valencia" region="spain" delay="0" width="100%" height="300"></map>
|
||||
```
|
Loading…
Reference in New Issue
Block a user