Setup enums filter for content automation
In this post, I’ll show how to easily use angular filters in order to dynamically replace content in your app when you use enums. Enums are a kind of dictionary …
In this post, I’ll show how to easily use angular filters in order to dynamically replace content in your app when you use enums. Enums are a kind of dictionary …
In the last post, we’ve extended the ngCesium module to have some extra functionality and viewer items. We’re now ready to extend our module with a bit more complex and relevant …
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 …