ngCesium – integrating angularjs and cesiumjs – part 3
In the last two parts we went through building our reusable cesium directive and module and then added our module to an app and extended it with an API stored in …
In the last two parts we went through building our reusable cesium directive and module and then added our module to an app and extended it with an API stored in …
In part 1, we got cesiumJS running in our angular app. We saw how we can add entities to it. It is also reusable using the directive we’ve built. Check this out …
In this 5 parts tutorial, we’ll walk through the building of an angular module, evolving around cesiumjs. This tutorial assumes you are already familiar with: Javascript (naturally) Cesiumjs Angualrjs If …
ES6 might be confusing at first – especially when using angular 1.X, which is still ES5. One obstacle is injecting services into directives. It doesn’t work as one might think. …
$mdDialog can be very useful. I’ve already mentioned how it can be used as a regular popup. In this post I’ll explain about the $mdDialog positioning. The default behavior is …
AngularJS is great for developers. Works like magic – you just state {{varName}}, fill it up with some data, and it just appears on screen. What really happens behind the …
Cesium allows us to easily zoom and track an entity, by double clicking on that entity. But sometimes you wouldn’t necessarily want that behavior, as double clicking is a very common UI …
Cesium billboards are an easy way to mark a point on the map with any image you want. It works with one simple JSON: viewer.entities.add({ position: position, billboard: { image: mySVGUrl …
$mdDialog is a powerful popup service for angular, but the angular material design team. The usage is relatively simple. On a click event (e.g. a button or a menu item) …
After the relatively soft release of Angular material design 0.9, version 0.10 is supposed to be a great enhancment – both in features and performance. Here are the new components you …