Vizicities

A framework for 3D geospatial visualization in the browser
Alternatives To Vizicities
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Cesium10,470227224a day ago102September 01, 20221,278apache-2.0JavaScript
An open-source JavaScript library for world-class 3D globes and maps :earth_americas:
Blendergis6,239
a month ago203gpl-3.0Python
Blender addons to make the bridge between Blender and geographic data
L73,075242a day ago475September 20, 2022114mitTypeScript
🌎 Large-scale WebGL-powered Geospatial Data Visualization analysis engine
Vizicities2,686
14 years agoNovember 02, 2014106bsd-3-clauseJavaScript
A framework for 3D geospatial visualization in the browser
3d Tiles1,715
20 days ago81Batchfile
Specification for streaming massive heterogeneous 3D geospatial datasets :earth_americas:
Terriajs1,0183063 days ago387July 13, 2022902apache-2.0TypeScript
A library for building rich, web-based geospatial data platforms.
Itowns893677 days ago56May 11, 2022182otherJavaScript
A Three.js-based framework written in Javascript/WebGL for visualizing 3D geospatial data
Webworldwind797647 days ago6June 24, 2022262apache-2.0JavaScript
The NASA WorldWind Javascript SDK (WebWW) includes the library and examples for creating geo-browser web applications and for embedding a 3D globe in HTML5 web pages.
Go Geom67110532 months ago28June 02, 20219bsd-2-clauseGo
Package geom implements efficient geometry types for geospatial applications.
Worldwindjava624
a year ago1February 17, 2021137otherJava
The NASA WorldWind Java SDK (WWJ) is for building cross-platform 3D geospatial desktop applications in Java.
Alternatives To Vizicities
Select To Compare


Alternative Project Comparisons
Readme

ViziCities (0.3)

A framework for 3D geospatial visualization in the browser

###Important links

Examples

Main changes since 0.2

  • Re-written from the ground up
  • Complete overhaul of visual styling
  • Massive performance improvements across the board
  • Vastly simplified setup and API
  • Better management and cleanup of memory
  • Sophisticated quadtree-based grid system
  • Physically-based lighting and materials (when enabled)
  • Realistic day/night skybox (when enabled)
  • Shadows based on position of sun in sky (when enabled)
  • Built-in support for image-based tile endpoints
  • Built-in support for GeoJSON and TopoJSON tile endpoints
  • Built-in support for non-tiled GeoJSON and TopoJSON files
  • Click events on individual features (when enabled)
  • Internal caching of tile-based endpoints
  • Easier to extend and add new functionality
  • Easier to access and use general three.js features within ViziCities
  • Separation of three.js from the core ViziCities codebase

Getting started

The first step is to add the latest ViziCities distribution to your website:

<script src="path/to/vizicities.min.js"></script>
<link rel="stylesheet" href="path/to/vizicities.css">

From there you will have access to the VIZI namespace which you can use to interact with and set up ViziCities.

You'll also want to add a HTML element that you want to contain your ViziCities visualisation:

<div id="vizicities"></div>

It's worth adding some CSS to the page to size the ViziCities element correctly, in this case filling the entire page:

* { margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden;}
#vizicities { height: 100%; }

The next step is to set up an instance of the ViziCities World component and position it in Manhattan:

// Manhattan
var coords = [40.739940, -73.988801];
var world = VIZI.world('vizicities').setView(coords);

The first argument is the ID of the HTML element that you want to use as a container for the ViziCities visualisation.

Then add some controls:

VIZI.Controls.orbit().addTo(world);

And a 2D basemap using tiles from CartoDB:

VIZI.imageTileLayer('http://{s}.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png', {
  attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, &copy; <a href="http://cartodb.com/attributions">CartoDB</a>'
}).addTo(world);

At this point you can take a look at your handywork and should be able to see a 2D map focussed on the Manhattan area. You can move around using the mouse.

If you want to be a bit more adventurous then you can add 3D buildings using Mapzen vector tiles:

VIZI.topoJSONTileLayer('https://vector.mapzen.com/osm/buildings/{z}/{x}/{y}.topojson?api_key=vector-tiles-NT5Emiw', {
  interactive: false,
  style: function(feature) {
    var height;

    if (feature.properties.height) {
      height = feature.properties.height;
    } else {
      height = 10 + Math.random() * 10;
    }

    return {
      height: height
    };
  },
  filter: function(feature) {
    // Don't show points
    return feature.geometry.type !== 'Point';
  },
  attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, <a href="http://whosonfirst.mapzen.com#License">Who\'s On First</a>.'
}).addTo(world);

Refresh the page and you'll see 3D buildings appear on top of the 2D basemap.

Take a look at the various examples to see some more complex uses of ViziCities.

Using ViziCities? Please attribute it

While we love giving you free and open access to the code for ViziCities, we also appreciate getting some recognition for all the hard work that's gone into it. A small attribution is built into ViziCities and, while possible to remove, we'd really appreciate it if you left it in.

If you absolutely have to remove the attribution then please get in touch and we can work something out.

Consultancy work

Want to use ViziCities but don't want to customise it yourself? Or perhaps you have an idea that might benefit from ViziCities but aren't sure how to make it a reality? We offer consultancy related to ViziCities projects and would love to see how we can help you.

Interested? Get in touch with us and let's get talking.

Contact us

Want to share an interesting use of ViziCities, or perhaps just have a question about it? You can communicate with the ViziCities team via email ([email protected]) and Twitter (@ViziCities).

License

ViziCities is copyright UrbanSim Inc. and uses the fair and simple BSD-3 license. Want to see it in full? No problem, you can read it here.

Popular Geospatial Projects
Popular 3d Graphics Projects
Popular Mapping Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
3d
2d
Geojson
Geospatial
Topojson