admin管理员组文章数量:1342504
I have a question about implementing Google Maps auto plete function in material design:
<md-autoplete flex="" md-no-cache="ctrl.noCache" md-selected-item="ctrl.selectedItem" md-search-text="ctrl.searchText" md-items="item in ctrl.querySearch(ctrl.searchText)" md-item-text="item.display" md-floating-label="Favorite state">
<span md-highlight-text="ctrl.searchText">{{item.display}}</span>
</md-autoplete>
Angular Material autoplete | Google Maps autoplete
How can I use material design's auto plete in google maps auto plete (angular)?
Thanks in advance.
I've found this solution: i overwrite only the css proprties:
/*maps autoplete*/
.pac-item{
font-family:RobotoDraft,Roboto,'Helvetica Neue',sans-serif !important;
font-weight: 300 !important;
color: rgb(33,33,33) !important;
line-height: 40px !important;
/*font-weight: 800;*/
}
.pac-item-query{
font-family:RobotoDraft,Roboto,'Helvetica Neue',sans-serif !important;
font-size: 16px;
}
.pac-item:hover{
background-color: #eeeeee !important;
transition: background .15s linear;
}
.pac-container{
color: rgb(33,33,33) !important;
background-color: #fafafa;
/*font-weight: 800;*/
}
.pac-icon, .pac-icon-marker{
background: none !important;
background-image: none !important;
}
I have a question about implementing Google Maps auto plete function in material design:
<md-autoplete flex="" md-no-cache="ctrl.noCache" md-selected-item="ctrl.selectedItem" md-search-text="ctrl.searchText" md-items="item in ctrl.querySearch(ctrl.searchText)" md-item-text="item.display" md-floating-label="Favorite state">
<span md-highlight-text="ctrl.searchText">{{item.display}}</span>
</md-autoplete>
Angular Material autoplete | Google Maps autoplete
How can I use material design's auto plete in google maps auto plete (angular)?
Thanks in advance.
I've found this solution: i overwrite only the css proprties:
/*maps autoplete*/
.pac-item{
font-family:RobotoDraft,Roboto,'Helvetica Neue',sans-serif !important;
font-weight: 300 !important;
color: rgb(33,33,33) !important;
line-height: 40px !important;
/*font-weight: 800;*/
}
.pac-item-query{
font-family:RobotoDraft,Roboto,'Helvetica Neue',sans-serif !important;
font-size: 16px;
}
.pac-item:hover{
background-color: #eeeeee !important;
transition: background .15s linear;
}
.pac-container{
color: rgb(33,33,33) !important;
background-color: #fafafa;
/*font-weight: 800;*/
}
.pac-icon, .pac-icon-marker{
background: none !important;
background-image: none !important;
}
Share
Improve this question
edited May 18, 2015 at 7:02
aldimeola1122
asked May 16, 2015 at 10:39
aldimeola1122aldimeola1122
8185 gold badges14 silver badges24 bronze badges
1
- If you want to integrate them to get checkboxes and/or radio buttons and such elements, here's a good reference: plnkr.co/edit/GF3nM3XfYX9El2w11pGo?p=preview – Kay_N Commented May 19, 2015 at 23:58
2 Answers
Reset to default 12We had the exact same requirement for our app, and we did manage to do it the "proper" way, so here you have the solution with the md-autoplete directive (using Angular Material), taking advantage of the AutopleteService API from Google.
View:
<md-autoplete md-no-cache="true"
md-selected-item="vm.selectedItem"
md-search-text-change="vm.search(vm.searchText)"
md-search-text="vm.searchText"
md-items="item in vm.search(vm.searchText)"
md-item-text="item"
md-min-length="0"
placeholder="Type your address">
<md-item-template>
<span md-highlight-text="vm.searchText" md-highlight-flags="^i">{{item}}</span>
</md-item-template>
<md-not-found>
No matches found for "{{vm.searchText}}".
</md-not-found>
</md-autoplete>
Controller:
vm.search = search;
function search(address) {
var deferred = $q.defer();
getResults(address).then(
function (predictions) {
var results = [];
for (var i = 0, prediction; prediction = predictions[i]; i++) {
results.push(prediction.description);
}
deferred.resolve(results);
}
);
return deferred.promise;
}
function getResults(address) {
var deferred = $q.defer();
vm.gmapsService.getQueryPredictions({input: address}, function (data) {
deferred.resolve(data);
});
return deferred.promise;
}
Just remember to create the service on your controller activation:
vm.gmapsService = new google.maps.places.AutopleteService();
And to add the javascript dependency on your main app file:
<script src="https://maps.googleapis./maps/api/js?key=YOUR_API_KEY&libraries=places"></script>
All the vm. stuff is because we use the John Papa Styleguide
Hope it works for you!
Yes I think you are onto something. The google auto-pletion has it's own DOMrendered on the top (or bottom? sorry I cant remenber) of the document and event handlers binding to them.
The easy way out is overwrite the css rules to meet your requirements. But if that doesn't workout, you can always use google geocode API
https://developers.google./maps/documentation/geocoding/ to work with Material design md-autoplete directive. You get flexibility to work with just json format geo data from restful API and do whatever you want with it., But the trade off is you lose some capability (e.g. you cannot sort the match based on your current place, you have to use region or city to manually restrict them).
本文标签: javascriptGoogle Maps autoComplete with material designStack Overflow
版权声明:本文标题:javascript - Google Maps autoComplete with material design - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743702104a2524497.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论