%--
Document : index
Created on : Jul 16, 2010, 12:55:56 PM
Author : esteban
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%
String factType = request.getParameter("factType");
String fieldName = request.getParameter("fieldName");
String cf_id = request.getParameter("cf_id") == null ? "" : request.getParameter("cf_id");
String cf_value = request.getParameter("cf_value") == null ? "" : request.getParameter("cf_value");
String lat = "46.65";
String lng = "7.90";
if (!cf_id.isEmpty() && cf_id.contains("|")){
String[] parts = cf_id.split("\\|");
lat = parts[0];
lng = parts[1];
}
%>
Fact Type= <%=factType%>, Field= <%=fieldName%>