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

update

Causes the layer to redraw after its underlying data has changed. This might be due to database changes, styling changes or features being added to the layer on the client.

Parameters

No parameters.

Example

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

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