-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
139 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,44 @@ | ||
# SDK Geoportail 2D/3D, version 3.3.1 | ||
# SDK Geoportail 2D/3D, version 3.3.4 | ||
|
||
**08/11/2021 : version 3.3.1** | ||
**03/12/2021 : version 3.3.4** | ||
|
||
> Release SDK Geoportail 2D/3D | ||
## Summary | ||
|
||
* Upgrade des extensions geoportail pour utilisation de l'itinéraire v2 | ||
* Possibilité de passer une liste de clés lors de l'initialisation de la carte | ||
|
||
## Changelog | ||
|
||
* [Added] | ||
- Possibilité de passer une liste de clés lors de l'initialisation de la carte (#86) | ||
Exemple : | ||
```js | ||
var map = Gp.Map.load('geoportalMap',{ | ||
apiKey : "jhyvi0fgmnuxvfv0zjzorvdn,administratif", | ||
azimuth : 45, | ||
zoom : 13, | ||
center : { | ||
x : -511270, | ||
y : 6151620 | ||
}, | ||
layersOptions : { | ||
'ORTHOIMAGERY.ORTHOPHOTOS': { | ||
}, | ||
'GEOGRAPHICALGRIDSYSTEMS.MAPS': { | ||
}, | ||
'LIMITES_ADMINISTRATIVES_EXPRESS.LATEST': { | ||
} | ||
} | ||
} | ||
``` | ||
* [Changed] | ||
- geoportal access lib 3.0.1 (#84) | ||
- extension geoportail pour openlayers 3.1.0 (#84) | ||
|
||
* [Removed] | ||
* [Fixed] | ||
- correction sur l'affichage des ponctuels sur les KML / GPX en 3D (#85) | ||
|
||
* [Deprecated] | ||
* [Security] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{{#extend "sample-bundle-layout-2d"}} | ||
|
||
{{#content "head"}} | ||
<title>Sample SDK 2D multikey</title> | ||
{{/content}} | ||
|
||
{{#content "style"}} | ||
<style> | ||
#viewerDiv { | ||
height: 600px; | ||
width: 1200px; | ||
position : "relative"; | ||
} | ||
</style> | ||
{{/content}} | ||
|
||
{{#content "body"}} | ||
<div id="viewerDiv"></div> | ||
{{/content}} | ||
|
||
{{#content "js"}} | ||
<script> | ||
var map = Gp.Map.load('viewerDiv',{ | ||
apiKey : "ortho,cartes,administratif", | ||
azimuth : 45, | ||
zoom : 13, | ||
center : { | ||
x : -511270, | ||
y : 6151620 | ||
}, | ||
layersOptions : { | ||
'ORTHOIMAGERY.ORTHOPHOTOS': { | ||
}, | ||
'GEOGRAPHICALGRIDSYSTEMS.PLANIGNV2': { | ||
}, | ||
'LIMITES_ADMINISTRATIVES_EXPRESS.LATEST': { | ||
} | ||
}, | ||
controlsOptions : { | ||
layerSwitcher : { | ||
maximised : true | ||
}, | ||
mousePosition : { | ||
maximised : false | ||
}, | ||
attributions : { | ||
maximised : false | ||
} | ||
} | ||
}) | ||
</script> | ||
{{/content}} | ||
{{/extend}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{{#extend "sample-bundle-layout-3d"}} | ||
|
||
{{#content "head"}} | ||
<title>Sample SDK 3D multikey</title> | ||
{{/content}} | ||
|
||
{{#content "style"}} | ||
<style> | ||
#viewerDiv { | ||
height: 600px; | ||
width: 1200px; | ||
position : "relative"; | ||
} | ||
</style> | ||
{{/content}} | ||
|
||
{{#content "body"}} | ||
<div id="viewerDiv"></div> | ||
{{/content}} | ||
|
||
{{#content "js"}} | ||
<script> | ||
var map = Gp.Map.load('viewerDiv',{ | ||
apiKey : "ortho,cartes,administratif", | ||
azimuth : 45, | ||
zoom : 13, | ||
center : { | ||
x : -511270, | ||
y : 6151620 | ||
}, | ||
layersOptions : { | ||
'ORTHOIMAGERY.ORTHOPHOTOS': { | ||
}, | ||
'GEOGRAPHICALGRIDSYSTEMS.PLANIGNV2': { | ||
}, | ||
'LIMITES_ADMINISTRATIVES_EXPRESS.LATEST': { | ||
} | ||
}, | ||
controlsOptions : { | ||
layerSwitcher : { | ||
maximised : true | ||
}, | ||
mousePosition : { | ||
maximised : false | ||
}, | ||
attributions : { | ||
maximised : false | ||
} | ||
} | ||
}) | ||
</script> | ||
{{/content}} | ||
{{/extend}} |