Edit C:\galaxie\Back\galaxie\sales\enterprise\MapSearch.jsp
<% /****************************************************************************** * Copyright (c) 2000-2004 e-Deal * * e-Deal S.A. * 55 rue Brillat Savarin * 75013 Paris * France * * T: +33 (0)1 53 80 80 30 * F: +33 (0)1 73 01 69 77 * http://www.e-deal.com * * La diffusion de ce code source sous quelque forme que ce soit sans * l'autorisation de E-DEAL est interdite. * * Vous êtes autorisés à modifier ce code source uniquement pour votre usage * propre et sous réserve que les mentions de copyright demeurent intactes. * * Ce code est fourni en l'état. Aucune garantie d'aucune sorte, explicite ou * implicite n'est donnée. En aucun cas E-DEAL ne pourra être tenu pour * responsable des dommages pouvant résulter de l'utilisation de ce code * source. * * ******************************************************************************/ %><%@page session="true" import="com.edeal.frontline.*,java.util.*,java.net.*,java.io.*"%> <%@taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl" %> <% final org.apache.commons.logging.Log logger = org.apache.commons.logging.LogFactory.getLog(getClass()); String contextPath = (String) session.getAttribute("contextPath"); FlContext context = null; if (contextPath!=null) { context = Frontline.getContext(contextPath); } else { context = Frontline.getContext(request.getContextPath()); } DataDictionary dico = context.getDataDictionary(); String latitude =(String) request.getParameter("latitude"); String longitude=(String) request.getParameter("longitude"); String addr=(String) request.getParameter("addr"); %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <title>Map</title> <script language="javascript" src="<fl:webapp/>/js/utils.js"></script> <script src="//maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script> <script type="text/javascript"> //<![CDATA[ var map = null; var geocoder = null; var polyline = null; function load() { alert('MapSerach'); geocoder = new GClientGeocoder(); var address='<%=addr%>'; var latitude = <%=latitude%>; var longitude=<%=longitude%>; //if (GBrowserIsCompatible()) { map = new GMap2(document.getElementById("map")); map.addControl(new GSmallMapControl()); map.addControl(new GMapTypeControl()); map.setCenter(new GLatLng(latitude,longitude), 13); map.setMapType(G_SATELLITE_MAP); //marker.openInfoWindowHtml(html); if (geocoder) { var longitude1=null; var latitude1=null; geocoder.getLatLng( address, function(point) { if (!point) { alert(unescape('Adresse non trouvée')); window.close(); } else { var marker = new GMarker(point); var longitude1=point.x; var latitude1= point.y; var marker = new GMarker(new GLatLng(latitude,longitude)); var marker1 = new GMarker(new GLatLng(latitude1,longitude1)); var start = new GLatLng(latitude,longitude); var end = new GLatLng(latitude1,longitude1); var myPoints = new Array(start, end); var myLine = new GPolyline(myPoints); map.addOverlay(marker); map.addOverlay(marker1); map.addOverlay(myLine); } } ); } //} } //]]> </script> </head> <body onload="load()" onunload="GUnload()"> <div id="map" style="width: 675px; height: 475px"></div> </body> </html>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de