/* * Copyright 2014 Geoff Capper. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.lynden.gmapsfx.javascript.object; import com.lynden.gmapsfx.javascript.JavascriptObject; import com.lynden.gmapsfx.shapes.MapShapeOptions; import netscape.javascript.JSObject; /** * * @author Geoff Capper */ public abstract class MapShape extends JavascriptObject { public MapShape(String type) { super(type); } public MapShape(String type, MapShapeOptions opts) { super(type, opts); } /** * This method is called from the GoogleMap.addPolygon() method, * it should not be invoked directly. * * @param map The map to add this Polygon to. */ protected void setMap(GoogleMap map) { invokeJavascript("setMap", map); } // LatLngBounds Gets the LatLngBounds of this Circle. public LatLongBounds getBounds() { return new LatLongBounds((JSObject) invokeJavascript("getBounds")); } // Returns whether this circle can be dragged by the user. public boolean getDraggable() { return checkBoolean(invokeJavascript("getDraggable"), Boolean.FALSE); } // Returns whether this circle can be edited by the user. public boolean getEditable() { return checkBoolean(invokeJavascript("getEditable"), Boolean.FALSE); } //Returns whether this circle is visible on the map. public boolean getVisible() { return checkBoolean(invokeJavascript("getVisible"), Boolean.FALSE); } //If set to true, the user can drag this circle over the map. public void setDraggable(boolean draggable) { invokeJavascript("setDraggable", draggable); } //If set to true, the user can edit this circle by dragging the control points shown at the center and around the circumference of the circle. public void setEditable(boolean editable) { invokeJavascript("setEditable", editable); } //Hides this circle if set to false. public void setVisible(boolean visible) { invokeJavascript("setVisible", visible); } }