private void addDataToMap() {
// Polygon will be rendered solid white with a black border if we
// don't change the style.
final MapPoint[] points = new MapPoint[6];
points[0] = new MapPoint(ORIGIN_LATITUDE, ORIGIN_LONGITUDE);
points[1] =
new MapPoint(ORIGIN_LATITUDE - 0.05,
ORIGIN_LONGITUDE + 0.05);
points[2] =
new MapPoint(ORIGIN_LATITUDE - 0.1,
ORIGIN_LONGITUDE + 0.025);
points[3] =
new MapPoint(ORIGIN_LATITUDE - 0.1,
ORIGIN_LONGITUDE - 0.025);
points[4] =
new MapPoint(ORIGIN_LATITUDE - 0.05,
ORIGIN_LONGITUDE - 0.05);
// Close the polygon
points[5] = new MapPoint(ORIGIN_LATITUDE, ORIGIN_LONGITUDE);
final MapSimplePolygon poly = new MapSimplePolygon(points);
poly.setStyleId("poly");
_bigMap.getModel().add(poly, "Polygon", true);