Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Le titre de ma page</title>
- <meta charset="UTF-8">
- <style>
- /* Ici sont définis les style CSS */
- </style>
- </head>
- <body>
- <!-- Ici, c'est le domaine du code HTML-->
- <script>
- // Entre les balises <script>, c'est le domaine de Javascript !
- bdSpatiale = {
- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "properties": {
- "var1": 100,
- "var2": 200
- },
- "geometry": {
- "type": "Point",
- "coordinates": [
- -71.3671875,
- 51.39920565355378
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {
- "var1": 234,
- "var2": 543,
- "var3": 12
- },
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [
- -144.84375,
- 6.664607562172585
- ],
- [
- -45,
- 14.604847155053898
- ],
- [
- -52.03125,
- 66.51326044311185
- ],
- [
- -3.1640625,
- 33.137551192346145
- ],
- [
- 42.890625,
- 71.30079291637452
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {
- "var1": 34
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 24.960937499999996,
- 43.83452678223682
- ],
- [
- 42.1875,
- 33.137551192346145
- ],
- [
- 56.953125,
- 44.33956524809713
- ],
- [
- 47.8125,
- 55.57834467218206
- ],
- [
- 24.960937499999996,
- 43.83452678223682
- ]
- ]
- ]
- }
- }
- ]
- }
- console.log(bdSpatiale)
- </script>
- <!-- Ici, c'est à nouveau le domaine du code HTML-->
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment