package com.google.gwt.maps.client.panoramiolib; /* * #%L * GWT Maps API V3 - Core API * %% * Copyright (C) 2011 - 2012 GWT Maps API V3 * %% * 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. * #L% */ import com.google.gwt.core.client.JavaScriptObject; import com.google.gwt.maps.client.MapImpl; import com.google.gwt.maps.client.MapWidget; /** * This object defines the properties that can be set on a PanoramioLayer object. <br> * <br> * See <a href="https://developers.google.com/maps/documentation/javascript/reference#PanoramioLayerOptions"> * PanoramioLayerOptions API Doc</a> */ public class PanoramioLayerOptions extends JavaScriptObject { /** * This object defines the properties that can be set on a PanoramioLayer object. */ public final static PanoramioLayerOptions newInstance() { return JavaScriptObject.createObject().cast(); } /** * use newInstance(); */ protected PanoramioLayerOptions() { } /** * If true, the layer receives mouse events. Default value is true. */ public final native boolean getClickable() /*-{ return this.clickable; }-*/; /** * The map on which to display the layer. */ public final MapWidget getMap() { return MapWidget.newInstance(getMapImpl()); } private final native MapImpl getMapImpl() /*-{ return this.map; }-*/; /** * Suppress the rendering of info windows when layer features are clicked. */ public final native boolean getSuppressInfoWindows() /*-{ return this.suppressInfoWindows; }-*/; /** * A panoramio tag used to filter the photos which are displayed. Only photos which have been tagged with the supplied * string will be shown. */ public final native String getTag() /*-{ return this.tag; }-*/; /** * A Panoramio user ID. If provided, only photos by this user will be displayed on the map. If both a tag and user ID * are provided, the tag will take precedence. */ public final native String getUserId() /*-{ return this.userId; }-*/; /** * If true, the layer receives mouse events. Default value is true. * * @param clickable */ public final native void setClickable(boolean clickable) /*-{ this.clickable = clickable; }-*/; /** * The map on which to display the layer. * * @param mapWidget */ public final void setMap(MapWidget mapWidget) { if (mapWidget == null) { setMapImpl(null); } else { setMapImpl(mapWidget.getJso()); } } private final native void setMapImpl(MapImpl map) /*-{ this.map = map; }-*/; /** * Suppress the rendering of info windows when layer features are clicked. * * @param suppressInfoWindows */ public final native void setSuppressInfoWindows(boolean suppressInfoWindows) /*-{ this.suppressInfoWindows = suppressInfoWindows; }-*/; /** * A panoramio tag used to filter the photos which are displayed. Only photos which have been tagged with the supplied * string will be shown. * * @param tag */ public final native void setTag(String tag) /*-{ this.tag = tag; }-*/; /** * A Panoramio user ID. If provided, only photos by this user will be displayed on the map. If both a tag and user ID * are provided, the tag will take precedence. * * @param userId */ public final native void setUserId(String userId) /*-{ this.userId = userId; }-*/; }