JS API
Map Object
QueryEngine Object
Layer Object
Feature Object
Query Object
GeoJson Function Library (Experimental)

Example


var map = new Mapzania.Map("map-div", "AFRICA", function () {

    map.usingLayer("COUNTRIES")
        .filterByText("LandLocked=='Y'")
        .style({ fillColor: "#CCCCCC"})
        .usingFeature("107")
            .style({ fillColor: "#FF0000"})
            .update();
});