maptalks.gltf

Usage
maptalks.gltf is a maptalks layer used to rendering gltf models on map.
Install
- Install with npm:
npm install @maptalks/gltf-layer.
- Use unpkg CDN:
https://unpkg.com/@maptalks/gltf-layer@0.2.0/dist/maptalks.gltf.js
Vanilla Javascript
<script type="text/javascript" src="../maptalks.gltf.js"></script>
<script>
var map = new maptalks.Map("map",{
center : [0, 0],
zoom : 15
});
var gltflayer = new maptalks.GLTFLayer('gltf').addTo(map);
var gltfMarker = new maptalks.GLTFMarker(coordinate, {
outline: true,
symbol : {
rotation: [90, 0, 0]
}
}).addTo(gltflayer);
</script>
ES6
import { GLTFLayer } from 'maptalks.gltf';
import { GLTFMarker } from 'maptalks.gltf';
const map = new maptalks.Map("map",{
center : [0, 0],
zoom : 15
});
const gltflayer = new GLTFLayer('gltf').addTo(map);
const gltfMarker = new GLTFMarker(coordinate, {
outline: true,
symbol : {
rotation: [90, 0, 0]
}
}).addTo(gltflayer);
API
-
Class : GLTFLayer(inherited from maptalks.OverlayLayer)
a layer used to renderering gltf model on map, it manages gltf markers.
Method : new GLTFLayer(id, options)
id | String | | gltflayer's id |
options | Object | null | construct options |
Method : (static)registerShader(name, type, config, uniforms)
register a custom shader to gltf layer
name | String | | shader's name |
type | String | | shader's type |
config | Object | | a regl shader structure |
uniforms | Object | null | uniforms transform to webgl shader |
Method : (static)removeShader(name)
remove a shader from gltf layer's shader list
Method : (static)getShaders()
get all shaders registed to gltf layer
returns :
Object: gltf layer's shader list
Method : (static)fromJSON(json)
create a GLTFLayer from s JSON object
returns :
GLTFLayer: a new gltf layer
Method : addGeometry(markers)
add one or more gltf marker in gltf layer
markers | GLTFMarker | Array. | | one or more GLTFMarkers |
returns :
GLTFLayer: this
Method : removeGeometry(markers)
remove one or more gltf marker from gltf layer
markers | GLTFMarker | Array. | | one or more GLTFMarkers |
Method : getModels()
get gltf layer's models
returns :
Object: gltf model list
Method : toJSON(options)
convert gltflayer to a JSON object
options | Object | null | export options |
returns :
Object: gltflayer's JSON
Method : setStyle(layerStyle)
set styles for gltf layer
layerStyle | Object | | style object to set for gltflayer |
returns :
GLTFLayer: this
Method : getStyle()
get gltf layer's style objects if it has set
layerStyle | Object | | style object to set for gltflayer |
returns :
Object: layer's style object
Method : updateSymbol(idx, symbolProperties)
update a style's symbol for gltf layer by index
idx | Number | | the index of gltflayer's style |
symbolProperties | Object | null | a style object |
Method : getGLTFUrls()
get all modle's url added to gltf layer
returns :
Array: gltf model list
Method : clear()
clear all gltf markers
returns :
GLTFLayer: this
Method : remove()
remove itself from map
Method : identify(coordinate, options)
_identify the gltf markers on the given coordinate
coordinate | maptalks.Coordinate | | coordinate to identify |
options | Object | null | some conditions |
-
Class : GLTFMarker(inherited from maptalks.Marker)
a gltf marker object to render gltf models
Method : new GLTFMarker(coordinates, options)
coordinates | maptalks.Coordinates | | coordinates of the gltf marker |
options | Object | null | construct options defined in GLTFMarker |
Method : (static)fromJSON(json)
create a new GLTFMarker from a JSON object
returns :
GLTFMarker: a new GLTFMarker
Method : setUrl(url)
set a gltf model path for gltf marker
url | String | | gltf model's path |
returns :
GLTFMarker: this
Method : setCoordinates(coordinates)
set coordinates for gltf marker
coordinates | Coordinate | Array. | | the gltf marker's location |
returns :
GLTFMarker: this
Method : addTo(layer)
add a gltf marker to gltf layer
layer | GLTFLayer | | the layer to add to |
returns :
GLTFMarker: this
Method : remove()
remove itselt from gltf layer
Method : show()
show the marker
returns :
GLTFMarker: this
Method : hide()
hide the marker_
returns :
GLTFMarker: this
Method : setBloom(bloom)
add a gltf marker to gltf layer
bloom | Boolean | | whether has bloom effect |
returns :
GLTFMarker: this
Method : isBloom()
if the gltf marker has bloom effect
returns :
Boolean : if has bloom effect
Method : setCastShadow(shadow)
set shadow effect for gltf marker
shadow | Boolean | | whether has shadow effect |
returns :
GLTFMarker: this
Method : isCastShadow()
if the gltf marker has shadow effect
returns :
Boolean : if has shadow effect
Method : setOutline(outline)
set outline effect for gltf marker
outline | Boolean | | whether has outline effect |
returns :
GLTFMarker: this
Method : isOutline()
if the gltf marker has outline effect
returns :
Boolean : if has outline effect
Method : isVisible()
if the gltf marker has outline effect
returns :
Boolean : if has outline effect
Method : copy()
_clone a marker by itself
returns :
GLTFMarker : a new gltf marker
Method : setId(id)
set id for gltf marker
Method : setId(id)
get gltf marker's id
Method : setShader(shader)
set a shader for gltf marker
shader | Object | | shader's config |
returns :
GLTFMarker : a new gltf marker