{% extends "page.html" %} {% load static tethys_gizmos %} {% block title %}- Gizmos - Cesium Map View{% endblock %} {% block global_scripts %} {{ block.super }} {% gizmo_dependencies global_js %} {% endblock %} {% block styles %} {{ block.super }} {% gizmo_dependencies global_css %} {% endblock %} {% block flash %} {% endblock %} {% block content %}
{% if not cesium_ion_token %}
To obtain a token, see: Cesium ion REST API: Authentication
{% endif %}
{% csrf_token %}

Cesium Map View

{%if page_type == 'home' %}
This example shows a basic 3D Map with CesiumJS
{% endif %} {%if page_type == 'map_layers' %}
This example display an ESRI World Street Map and a drawing toolbar with CesiumJS
{% endif %} {%if page_type == 'terrain' %}
This example integrates the terrain feature and a drawing toolbar to 3D Map with CesiumJS.
{% endif %} {%if page_type == 'czml' %}
This example displays multiple CZML data on 3D Map with CesiumJS.
{% endif %} {%if page_type == 'geojson' %}
This example displays GeoJSON data on a 3D Map with CesiumJS.
{% endif %} {%if page_type == 'model' %}
This example displays a GLB 3D model on 3D Map with CesiumJS.
{% endif %} {%if page_type == 'model2' %}
This example displays multiple GLB 3D models on 3D Map with CesiumJS
{% endif %}
{% gizmo cesium_map_view %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% gizmo_dependencies css %} {{ block.super }} {% gizmo_dependencies js %} {% endblock %}