我正在尝试在 mapquest 中找到 2 个位置之间的距离。我通过硬编码 JavaScript 中的值来做到这一点。现在我正在尝试从 2 个帐户中获取值,并使用纬度和经度的值来查找距离。我创建了一个控制器,在控制器中我有一个记录列表 Longitude_c和 Latitude_c,我已经将值传递到我循环并添加到数组中的 JavaScript。直到它工作正常,但我的问题是我只从数组中获取 Id 而不是 Latitude_ c 和 Longitude _c 字段的值。
<apex:page id="pageId" standardController="Account" extensions="checkDistanceController">
<script src="http://www.mapquestapi.com/sdk/js/v7.0.s/mqa.toolkit.js? key=Fmjtd%7Cluua250221%2C2a%3Do5-9620ua"></script>
<script type="text/javascript">
function checkDistance(distance1) {
alert('{!listzise}');
var listsizeJs = {!listzise};
alert(listsizeJs);
var AcLon=new Array();
var AcLat=new Array();
var JsAcLst=new Array();
var idx = 0;
<apex:repeat value="{!acLst}" var="ele">
JsAcLst[idx++]="{!ele}";
</apex:repeat>
for(var i=0; i<listsizeJs ; i++){
alert("in for loop" + i);
var llone={lat:40.730318, lng:-73.990603};
var llTow={lat:34.043897, lng:-118.209373};
alert('Accunt List Apex : {!acLst}');
alert('Accunt List JsLst:'+ JsAcLst[i]);
}
var distance = MQA.Util.arcDistance(llone, llTow, 'm');
var distance1 = MQA.Util.distanceBetween(llone, llTow, 'm');
alert(" Account Distance ........ " + Act_Distance);
document.getElementById("pageId:formId:theBlock:pageBlockSectionid1:outputId1").innerHTML=distance;
document.getElementById("pageId:formId:theBlock:pageBlockSectionid1:outputId2").innerH TML=distance1;
};
</script>
<apex:form id="formId">
<apex:pageBlock title="Check Distance Between Vendors" mode="edit" id="theBlock" >
<apex:pageBlockButtons location="both">
<apex:commandButton value="Find Distance" action="{!chkDistance}" onclick="checkDistance()" reRender="distanceID"/>
</apex:pageBlockButtons>
<apex:pageBlockSection columns="2" id="pageBlockSectionid1">
<apex:outputText id="outputId1" label="Arc `Distance :"></apex:outputText>
<apex:outputText id="outputId2" label="Distance Between :"></apex:outputText>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
控制器
public with sharing class checkDistanceController
{
public String Account { get; set; }
public Account theAccount{get;set;}
public Event_Equipment__c theEventEquipment{get;set;}
public string Longitude {get;set;}
public string Latitude {get;set;}
public list<Account> acLst {get; set;}
public decimal listzise{get;set;}
list<Account> acLst = new list<Account>();
public checkDistanceController(ApexPages.StandardController controller) {
acLst = [Select Latitude__c, Longitude__c from Account where Longitude__c != null and Latitude__c != null limit 2];
listzise = acLst.size();
}
}
谁能帮我解决这个问题。
谢谢阿努