01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.apache.cocoon.forms.formmodel;
18:
19: import java.util.List;
20:
21: public class GoogleMapValue {
22:
23: private float lng;
24: private float lat;
25: private int zoom;
26: private List markers;
27: private int currentMarker;
28: private GoogleMapMarker usermarker;
29:
30: public float getLat() {
31: return lat;
32: }
33:
34: public void setLat(float lat) {
35: this .lat = lat;
36: }
37:
38: public float getLng() {
39: return lng;
40: }
41:
42: public void setLng(float lng) {
43: this .lng = lng;
44: }
45:
46: public int getZoom() {
47: return zoom;
48: }
49:
50: public void setZoom(int zoom) {
51: this .zoom = zoom;
52: }
53:
54: public int getCurrentMarker() {
55: return currentMarker;
56: }
57:
58: public void setCurrentMarker(int currentMarker) {
59: this .currentMarker = currentMarker;
60: }
61:
62: public List getMarkers() {
63: return markers;
64: }
65:
66: public void setMarkers(List markers) {
67: this .markers = markers;
68: }
69:
70: public String toString() {
71: return "[lat=" + getLat() + ", lng=" + getLng() + " ,zoom="
72: + getZoom() + ", currentMarker=" + getCurrentMarker()
73: + ",usermarker=" + getUsermarker() + "]";
74: }
75:
76: public GoogleMapMarker getUsermarker() {
77: return usermarker;
78: }
79:
80: public void setUsermarker(GoogleMapMarker usermarker) {
81: this.usermarker = usermarker;
82: }
83:
84: }
|