我是C#的菜鸟,这是我的第一个编程语言,我目前正在努力学习C#中的C#。我已经开始了一个项目来自动化我在工作中做的很多事情。
如果有可能,任何人都可以推荐一个好地方开始研究如何具体做到这一点?我能找到的唯一资源是:
Google maps autocomplete textbox in c#
但他最终说他永远无法上班。它给了我一个关于如何去做的想法,但我不知道他做错了什么。
我想实施一个下单系统,用户需要做的第一件事就是输入客户名称和地址。
最终游戏正在获取地址并将其与存储地址数据库进行比较,如果邮政编码匹配,则加载帐户,如果没有,则使用地址详细信息创建新帐户。
能够使用Microsoft或Google API可以防止我必须托管其中包含每个英国地址的数据库。
编辑:https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete-addressform
根据Google,以下是此功能的JavaScript代码,但在网页中。正如您所看到的那样,注释表明JS库 Places 是必需的。这是否意味着我不能只进行转换,而且缺少某些功能。这些都嵌入在我未包含的HTML中:
// This example displays an address form, using the autocomplete feature
// of the Google Places API to help users fill in the information.
// This example requires the Places library. Include the libraries=places
// parameter when you first load the API. For example:
// <script src="https://maps.googleapis.com/maps/api/js? key=YOUR_API_KEY&libraries=places">
var placeSearch, autocomplete;
var componentForm = {
street_number: 'short_name',
route: 'long_name',
locality: 'long_name',
administrative_area_level_1: 'short_name',
country: 'long_name',
postal_code: 'short_name'
};
function initAutocomplete() {
// 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.
autocomplete.addListener('place_changed', fillInAddress);
}
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;
}
}
}
// 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 = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
var circle = new google.maps.Circle({
center: geolocation,
radius: position.coords.accuracy
});
autocomplete.setBounds(circle.getBounds());
});
}
}
答案 0 :(得分:0)
Bing Maps目前仅通过其网络控制提供自动建议/完成。您可以在应用程序中的Web浏览器控件中托管此内容,但这样会很混乱,并且可能无法很好地适应您的布局。
查看基于Azure位置的服务。他们有几个REST服务,可用于自动建议/完成地址/地点,兴趣点等。只需将typeahead
URL参数设置为true即可将服务置于预测模式。以下是一些有用的资源: