/* * Copyright 2009-2014 PrimeTek. * * 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 org.primefaces.showcase.view.data.gmap; import java.io.Serializable; import javax.annotation.PostConstruct; import javax.faces.bean.ManagedBean; import org.primefaces.model.map.DefaultMapModel; import org.primefaces.model.map.LatLng; import org.primefaces.model.map.MapModel; import org.primefaces.model.map.Marker; @ManagedBean public class MarkersView implements Serializable { private MapModel simpleModel; @PostConstruct public void init() { simpleModel = new DefaultMapModel(); //Shared coordinates LatLng coord1 = new LatLng(36.879466, 30.667648); LatLng coord2 = new LatLng(36.883707, 30.689216); LatLng coord3 = new LatLng(36.879703, 30.706707); LatLng coord4 = new LatLng(36.885233, 30.702323); //Basic marker simpleModel.addOverlay(new Marker(coord1, "Konyaalti")); simpleModel.addOverlay(new Marker(coord2, "Ataturk Parki")); simpleModel.addOverlay(new Marker(coord3, "Karaalioglu Parki")); simpleModel.addOverlay(new Marker(coord4, "Kaleici")); } public MapModel getSimpleModel() { return simpleModel; } }