在 Excel 电子表格中运行 JQuery 地理位置脚本

Posted

技术标签:

【中文标题】在 Excel 电子表格中运行 JQuery 地理位置脚本【英文标题】:Run JQuery Geolocation scripts in Excel Spreadsheets 【发布时间】:2016-02-21 17:49:06 【问题描述】:

是否可以在 Excel 电子表格中使用我的 jquery 脚本?我正在尝试使用地理位置来填充自动地址的功能。我能够通过 html 来做到这一点。 http://jsfiddle.net/bobrierton/13ffw6ko/ 但我很好奇如何在 Excel 表格中实现相同的目标。

我希望电子表格中的列是地址、城市、州、邮政编码,然后每次点击地址时,我都希望它预先填写并在此处提供类似我的 html 版本的建议。

请有人帮忙解决这个问题。

var placeSearch, autocomplete;
var componentForm = 
  route: 'long_name',
  locality: 'long_name',
  administrative_area_level_1: 'short_name',
  postal_code: 'short_name'
;

function initialize() 
  // Create the autocomplete object, restricting the search
  // to geographical location types.
  autocomplete = new google.maps.places.Autocomplete(
    /** @type HTMLInputElement */
    (document.getElementById('autocomplete')), 
      types: ['geocode']
    );
  // When the user selects an address from the dropdown,
  // populate the address fields in the form.
  google.maps.event.addListener(autocomplete, 'place_changed', function() 
    fillInAddress();
  );


// [START region_fillform]
function fillInAddress() 
  // Get the place details from the autocomplete object.
  var place = autocomplete.getPlace();

  for (var component in componentForm) 
    document.getElementById(component).value = '';
    document.getElementById(component).disabled = false;
  

  // Get each component of the address from the place details
  // and fill the corresponding field on the form.
  for (var i = 0; i < place.address_components.length; i++) 
    var addressType = place.address_components[i].types[0];
    if (componentForm[addressType]) 
      var val = place.address_components[i][componentForm[addressType]];
      document.getElementById(addressType).value = val;
    
  
  //var keys=[];for (var key in place.address_components[0]) keys.push(key);
  //alert(keys):
  document.getElementById('autocomplete').value = 
    place.address_components[0]['long_name'] + ' ' +
    place.address_components[1]['long_name'];
  
  /*document.getElementById('route').value = (document.getElementById('chbSame').checked ? document.getElementById('autocomplete').value : '');*/
  document.getElementById('route').value = '';


// [START region_geolocation]
// Bias the autocomplete object to the user's geographical location,
// as supplied by the browser's 'navigator.geolocation' object.
function geolocate() 
  if (navigator.geolocation) 
    navigator.geolocation.getCurrentPosition(function(position) 
      var geolocation = new google.maps.LatLng(
        position.coords.latitude, position.coords.longitude);
      var circle = new google.maps.Circle(
        center: geolocation,
        radius: position.coords.accuracy
      );
      autocomplete.setBounds(circle.getBounds());
    );
  
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=places"></script>
    <body onload="initialize()">
    <div id="locationField">
      <div class="clearfix">
    	<label for="street_<cfoutput>#Add#</cfoutput>">Mailing Address 1:</label>
    	<input type="text" name="street_#Add#" validateat="onSubmit" validate="maxlength" required="yes" id="autocomplete" size="54" maxlength="120" message="Please enter owner #Peoplecount#'s mailing address." onFocus="geolocate()" value="">
    </div>

    <div class="clearfix">
    	<label for="m2street_<cfoutput>#Add#</cfoutput>">Mailing Address 2:</label>
    	<input type="text" name="m2street_#Add#" validateat="onSubmit" required="no" validate="maxlength" id="route" size="54" maxlength="120" value="">
    </div>
      
    <div class="clearfix">
    	<label for="city_<cfoutput>#Add#</cfoutput>">City:</label>
    	<input type="text" name="city_#Add#" validateat="onSubmit" validate="maxlength" required="yes" id="locality" size="30" maxlength="50" message="Please enter owner #Peoplecount#'s mailing city." value="">
        </div>
        
        <div class="clearfix">
    	<label for="state_<cfoutput>#Add#</cfoutput>">State:</label>
    	<input type="text" name="state_#Add#" required="yes" id="administrative_area_level_1" size="8" maxlength="12" message="Please enter owner #Peoplecount#'s mailing state." value="">
    </div>
            
            <div class="clearfix">
    	<label for="street_<cfoutput>#Add#</cfoutput>">Zip Code:</label>
    	<input type="text" name="postal_#Add#" required="yes" id="postal_code" size="8" maxlength="12" message="Please enter owner #Peoplecount#'s mailing zip code." value="">
    </div>
      </div>

【问题讨论】:

这些答案中描述了一些在 excel 中运行 javascript 的技术:***.com/questions/20171885/…***.com/questions/848246/… 你是说有可能吗?我在任何地方都找不到这个。我能够找到如何创建它的地图,但不知道如何进行自动地址填充 理论上似乎可行,但可能并不容易。我很好奇你为什么要首先这样做? 是的,也许通过了解原因和实现目标,我们可以帮助您找到替代方法。 好吧,原因是我使用 HTML5 和 JS 制作了一个应用程序,它使用了像上面小提琴一样的 Geolocation。目标是他们希望他们的 excel 电子表格在您开始输入时单击地址字段时执行相同的操作,他们希望它开始建议地址,如上面的小提琴。然后,当他们选择地址时,请填写相应的字段(地址、城市、州、邮编)。有一个地址列,所以每次开始输入地址字段时,它应该开始显示地址匹配,就像上面的小提琴一样 【参考方案1】:

是否可以在 Excel 电子表格中使用我的 jquery 脚本?我正在尝试使用地理位置来填充自动地址的功能。

没有。您的脚本依赖于 Google Maps API,这需要浏览器上下文才能正常工作。

虽然您可以在 Windows 脚本宿主中运行 JavaScript,但您需要的远不止 JavaScript。您需要一个浏览器 API,包括地理定位 API 和 AJAX。你不会在 Excel 中找到它。

但是,您可以发挥创意。您可以使用脚本发出 HTTP 请求(尽管不是普通的 AJAX 方式)。您可能还可以执行外部应用程序来为您获取职位。

【讨论】:

以上是关于在 Excel 电子表格中运行 JQuery 地理位置脚本的主要内容,如果未能解决你的问题,请参考以下文章

将 Access 数据库查询复制到 Excel 电子表格中

计算Excel表格中两个地方之间的地理坐标距离

如何将excel电子表格中的2行匹配2列?

在 sql server 2000 中导入 Excel 电子表格

Excel 在团队中使用电子表格打开、修改、保存

从服务端生成Excel电子表格(GcExcel + SpreadJS)