我正在编写一个工具,它使用用户输入的地址并将其转换为GoogleMaps'api的地理位置。
编辑:我确实想提交表格数据,但我认为。我不确定是否有必要提交表单,但最终结果是它应该在wordpress中生成包含title
,address
和geo
值的帖子。
如果删除了<form></form>
标记,则提交按钮调用的方法可以正常工作。如果表单周围有<form>
标记,则仍会调用该方法,但不会对任何内容进行地理编码。我是否错误地设置了表单?
以下是表格:
$title = $_POST['title'];
$address = $_POST['address'];
$new_post = array(
'post_title' => $title,
'post_content' => 'This is my post.',
'post_status' => 'publish',
'post_type' => 'post',
'address' => $address,
'geo' => $geo,
);
$post_id = wp_insert_post($new_post);
update_post_meta($post_id, 'address', $address, true);
update_post_meta($post_id, 'geo', $geo, true);
?>
<?php get_header()?>
<label>Event: </label><input id="title" type="text"/>
<label>Address: </label><input id="address" type="text"/>
<div id="map_canvas" style="width:500px; height:500px"></div><br/>
<label>latitude: </label><input id="latitude" type="text"/><br/>
<label>longitude: </label><input id="longitude" type="text"/><br/>
<input type="submit" id="compute" onClick="getCoordinates()" value="lets try it">
<input type="hidden" name="action" value="new_post" />
<?php wp_nonce_field( 'new-post' ); ?>
<?php get_footer()?>
以下是相关功能:
function getCoordinates() {
//variables are set up on page initialization
geocoder.geocode( { 'address': $('#address').val() }, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
alert ('latitude: ' + results[0].geometry.location.lat() + ' longitude: ' + results[0].geometry.location.lng());
$('#latitude').val( results[0].geometry.location.lat() ) ;
$('#longitude').val( results[0].geometry.location.lng() ) ;
$geo = results[0].geometry.location.lat() + "," + results[0].geometry.location.lng();
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
}
});
}
答案 0 :(得分:0)
将输入按钮从type =“submit”更改为type =“button”并关闭表单标签。当您想要实际提交表单时,您只使用带有提交按钮的表单,而不是仅执行仅限javascript的操作。
答案 1 :(得分:0)
当使用元素时,最好将此地理编码功能绑定到onsubmit event。
<form onsubmit="getCoords()">
...fields...
</form>
<script>
function getCoords(){
geocoder.makeALongRequest("some","params",function(result,data,xhr){
alert("this is the request callback");
});
//Always return false in the onsubmit event if you want to stop the browser from trying to POST anything
return false;
}