- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个名为MapProvider
的提供者
import { Injectable} from '@angular/core';
import { Http } from '@angular/http';
//import 'rxjs/add/operator/map';
import { GoogleMaps, GoogleMap, GoogleMapsEvent, LatLng, MarkerOptions, Marker, CameraPosition, PolylineOptions, ILatLng, Polyline } from "@ionic-native/google-maps";
import { Platform, AlertController } from "ionic-angular";
import { Storage } from '@ionic/storage';
import { MarkerProvider } from "../map/marker";
import { UserLocationProvider } from "../user/user-location";
import { Geoposition } from "@ionic-native/geolocation";
import { UserDataProvider } from "../user/user-data";
import { PolylineProvider } from "../map/polyline";
/*
Generated class for the MapProvider provider.
See https://angular.io/docs/ts/latest/guide/dependency-injection.html
for more info on providers and Angular DI.
*/
declare var google;
@Injectable()
export class MapProvider {
currentLocationMarker: Marker;
currentOrders;
constructor(private googleMaps: GoogleMaps,
public http: Http,
private markerProvider: MarkerProvider,
private userLocationProvider: UserLocationProvider,
private userData: UserDataProvider,
private polylineProvider: PolylineProvider,
private storage: Storage,
private alertCtrl: AlertController) {}
convert(data){
return data.map(order=>({
id : order.id,
pick : new LatLng(order.pick_lat,order.pick_lng),
pick_time : order.pick_ex_time,
drop : new LatLng(order.drop_lat,order.drop_lng),
drop_time : order.drop_ex_time
}))
}
loadMap(navCtrl){
// create a new map by passing HTMLElement
let element: HTMLElement = document.getElementById('map');
let map: GoogleMap = this.googleMaps.create(element);
// listen to MAP_READY event
// You must wait for this event to fire before adding something to the map or modifying it in anyway
map.one(GoogleMapsEvent.MAP_READY).then(() => {
this.getCurrentLocation(map,navCtrl)
.then((userLocationMarker: Marker)=>{
this.currentLocationMarker=userLocationMarker;
console.log(userLocationMarker);
// Watch User's Current Location
// Don't forget to unsubscibe this to avoid memory leak
let userWatchLocation=this.userLocationProvider.watchCurrentLocation();
let watchhOptions = {
enableHighAccuracy: true,
timeout: 10000,
maximumAge: 0
};
userWatchLocation.subscribe((position: Geoposition)=>{
let userCurrentLatLng: LatLng = new LatLng(position.coords.latitude,position.coords.longitude);
// Show Marker
this.markerProvider.addMarker(map,userCurrentLatLng,'Your Current Location','user')
.then((marker: Marker)=>{
this.currentLocationMarker.remove();
this.currentLocationMarker=marker;
//this.changeDetectorRef.detectChanges();
});
// console.log("Befor addAllMarker");
// console.log(this.currentOrders);
},error=>console.warn('ERROR(' + error.code + '): ' + error.message),
()=>watchhOptions);
});
});
}
getCurrentLocation(map,navCtrl){
return new Promise(resolve=>{
// Get user's current location and set map's position
let userCurrentLocation=this.userLocationProvider.getCurrentLocation();
userCurrentLocation.then((position: Geoposition)=>{
let userCurrentLatLng: LatLng = new LatLng(position.coords.latitude,position.coords.longitude);
// Show Marker
this.markerProvider.addMarker(map,userCurrentLatLng,'Your Current Location','user')
.then((marker: Marker)=>{
this.currentLocationMarker=marker;
resolve(this.currentLocationMarker);
// Fetch user session data
this.storage.get('session').then((val) => {
// After fetching user's location show all orders points
let orderArray;
this.userData.getCurrentOrders(val.id).then(data=>{
orderArray=this.convert(data['deliveryOrders']);
// Alert user with number of delivery orders assigned to them
this.showAlert(orderArray.length,map);
//alert("You have "+orderArray.length+" Delivery Orders");
this.currentOrders=orderArray;
data['deliveryOrders'].map(order=>{
// Draw route between pick up and drop points of an order
this.polylineProvider.drawRoute(map,order.pick_lat,order.pick_lng,order.drop_lat,order.drop_lng,this.polylineProvider);
});
// Show current location marker and order location
this.markerProvider.addAllMarkers(map,this.currentOrders,navCtrl);
});
});
});
// create CameraPosition
let mapPosition: CameraPosition = {
target: userCurrentLatLng,
zoom: 25,
tilt: 30
};
// move the map's camera to position
map.moveCamera(mapPosition);
});
});
}
public showAlert(number,map): void {
// Disable the map
map.setClickable(false);
let alert = this.alertCtrl.create({
title: 'You have '+number +' Delivery Orders',
subTitle: '',
buttons: [
{
text: 'Dismiss',
role: 'cancel',
handler: () => {
// Enable the map again
map.setClickable(true);
}
}
]
});
// Show the alert
alert.present();
}
}
我已将此提供程序注入(inject)到我的 HomePage
中,如下所示
import { Component, ViewChild, ElementRef } from '@angular/core';
import { NavController, Platform, AlertController } from 'ionic-angular';
import { Geolocation } from '@ionic-native/geolocation';
import { GoogleMap, GoogleMapsEvent, LatLng, GoogleMaps, CameraPosition, MarkerOptions, Marker } from '@ionic-native/google-maps';
import { MapProvider } from "../../providers/map/map";
import { SignaturePage } from "../signature/signature";
//declare var google;
//declare var service;
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
//map: GoogleMap;
constructor(private mapProvider: MapProvider,public navCtrl: NavController,
public platform: Platform, private alertCtrl: AlertController) {
platform.ready().then(() => {
//const mapElement=document.getElementById('map');
//this.mapProvider.loadMap(this.navCtrl);
});
}
ngOnInit(){
this.mapProvider.loadMap(this.navCtrl);
}
openPad(){
this.navCtrl.push(SignaturePage);
}
}
但是当我按照如下方式在“OrderDropDetailsPage”中注入(inject)此提供程序时,出现错误
import { Component, ChangeDetectorRef } from '@angular/core';
import { NavController, NavParams, AlertController } from 'ionic-angular';
import { OrderDataProvider } from "../../providers/order/order-data";
import { ItemListPage } from "../item-list/item-list";
import { MapProvider } from "../../providers/map/map";
/**
* Generated class for the OrderDropDetailsPage page.
*
* See http://ionicframework.com/docs/components/#navigation for more info
* on Ionic pages and navigation.
*/
@Component({
selector: 'page-order-drop-details',
templateUrl: 'order-drop-details.html',
})
export class OrderDropDetailsPage {
order_id;
order_personal_data: any={};
constructor(private mapProvider: MapProvider,public navCtrl: NavController,
public navParams: NavParams,
private orderDataProvider: OrderDataProvider,
private changeDetectorRef: ChangeDetectorRef,
private alertCtrl: AlertController) {
this.order_id=navParams.get("order_id");
// Get details of customer and display
this.orderDataProvider.getDropPersonalDetails(this.order_id)
.then(data=>{
console.log(data);
this.order_personal_data=data;
// To display new changes call detectChanges()
this.changeDetectorRef.detectChanges();
console.log(this.order_personal_data);
});
}
// Show ordered items list in another page
showItems(){
this.navCtrl.push(ItemListPage,{order_id : this.order_id});
}
// Item is dropped - update order status and save time
dropped(){
// Confirm user action to change status
let alert = this.alertCtrl.create({
title: 'Confirm Your Action',
message: 'Your about to change the status of this order to DROPPED. Do you wish to proceed?',
buttons: [
{
text: 'Cancel',
role: 'cancel',
handler: () => {
console.log('Cancel clicked');
}
},
{
text: 'Update Status',
handler: () => {
this.orderDataProvider.updateOrderStatus(this.order_id,"DROPPED")
.then(data=>{
// Update delivery status to DROPPED in detail page
this.order_personal_data.delivery_status='DROPPED';
// To display new changes call detectChanges()
this.changeDetectorRef.detectChanges();
console.log('Dropped');
});
}
}
]
});
alert.present();
}
ionViewDidLoad() {
console.log('ionViewDidLoad OrderDropDetailsPage');
}
}
错误如下
Uncaught Error: Can't resolve all parameters for OrderDropDetailsPage: (?, [object Object], [object Object], [object Object], [object Object], [object Object]).
at syntaxError (http://localhost:8100/build/vendor.js:98171:34)
at CompileMetadataResolver._getDependenciesMetadata (http://localhost:8100/build/vendor.js:111508:35)
at CompileMetadataResolver._getTypeMetadata (http://localhost:8100/build/vendor.js:111376:26)
at CompileMetadataResolver.getNonNormalizedDirectiveMetadata (http://localhost:8100/build/vendor.js:110985:24)
at CompileMetadataResolver._getEntryComponentMetadata (http://localhost:8100/build/vendor.js:111629:45)
at http://localhost:8100/build/vendor.js:111201:55
at Array.map (native)
at CompileMetadataResolver.getNgModuleMetadata (http://localhost:8100/build/vendor.js:111201:18)
at JitCompiler._loadModules (http://localhost:8100/build/vendor.js:122261:66)
at JitCompiler._compileModuleAndComponents (http://localhost:8100/build/vendor.js:122220:52)
我不知道为什么我无法在多个页面中注入(inject)此提供程序。请帮忙
最佳答案
当提供者之间存在循环依赖关系时,通常会发生这种情况。欲了解更多详情,请参阅this
为了解决此问题,您可以在 OrderDropDetailsPage 构造函数中执行以下操作:
import { forwardRef } from '@angular/core';
constructor(@Inject(forwardRef(() => MapProvider)) private mapProvider, public navCtrl: NavController,
public navParams: NavParams,
private orderDataProvider: OrderDataProvider,
private changeDetectorRef: ChangeDetectorRef,
private alertCtrl: AlertController)
关于javascript - 无法在 ionic 3 的多个页面中注入(inject)提供程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45540272/
我想在聚焦时使用 ion-input 更改 ion-item 内的 ion-label 颜色。 我可以使用 --highlight-color-focused: yellow; 更改 ion-item
我想用 ionic 3 ion-list (或任何在 Ionic 3 中有效的东西)来显示水平列表而不是典型的垂直列表。 寻找解决方案 没有大量的 css 或难以维护的代码。
我目前使用 ionic 和我的 cordova 插件同时开发一个应用程序。我想知道如何使用文件 plugins/fetch.json 从本地文件系统更新我的插件。有什么想法吗? 最佳答案 使用 ion
当我在 ionic 项目文件夹中运行 ionic link 命令时,我收到以下错误消息 “除非您在 Ionic 项目文件夹中,否则您无法运行此命令” 我的系统信息。 Cordova CLI:6.3.1
如何注释 ion-row这样它就可以填满剩余的空间? 对于以下示例,黄色行“内容”应展开,直到占用所有剩余(绿色)空间。 Example text
我正在尝试构建一个 ionic 应用程序,但是当我运行 npm run ionic:build -–prod 时,出现以下错误: npm run ionic:build -–prod npm ERR!
我想在 ion-footer-bar 中添加两个按钮,如图片,但我的代码无法正常工作。 Button 333333333 Button
请有人澄清一下我什么时候会使用 ion-nav-view反对 ion-view ?我正在学习 AngularJS/Ionic(我对 AngularJS 有基本的了解;并且想使用 Ionic 来增强它)
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 1年前关闭。 Improve t
item-avatar 在我的项目中不起作用,它根本不显示 item-avatar 元素。 Recent Conversations
我正在使用带有属性interface="popover"的ion-select。弹出窗口在 select 下方打开,这使得弹出窗口非常小。 我发现,如果 ion-select 中有 10 个或更多项目
我创建了一个带有电容器的新项目 ionic。我使用 ionic 选择,但我有一个新的 ionic 选择选项,带有大文本,而不是在输入中分布。 Plaga/Enfermedad Al
如何像 ionic 中的许多应用程序一样滑动切换段?我在 ionic 官方文档中找不到任何 api。我只能找到this有用的线程。 但它似乎并不完美。有更好的解决办法吗? ionic 信息: Cord
我正在开发一个登录表单,所以在我的 中我有一个 (用作登录表单的容器)我想垂直居中。我用 css flexbox 和其他 css 技巧尝试了不同的方法,但对我没有任何作用!该卡片保留在页面顶部。你
我想在 ionic 选择(组合框)更改时隐藏和显示文本框 例如我有: ionic 选择中的 1 和 2如果我选择 1 文本框将隐藏,如果我选择 2 文本框将出现 这是我当前的代码: .ts onCha
我尝试在 ionic 4 中使用 ion-button 实现一个按钮,但没有样式输出,问题出在哪里,求助。 最佳答案 请使用以下代码 这里是 ionic v4 按钮的文档。 https://beta
我有一个在 ionic serve 中运行良好的应用程序。我现在正在尝试创建一个构建——这通常有效,但今天我遇到了问题。 ionic package build ios --profile devel
我正在使用 Ionic 2,在我的应用程序中我正在创建一个表单,如果出现验证错误,信息图标将出现在相关输入字段的右侧。 HTML如下,
我正在与一个远程团队一起开发 Ionic 1 应用程序,最近我们的版本彼此不喜欢。我想知道我是否也一直在从事 Ionic 2 项目,无论出于何种原因,我的 CLI “认为”这些应用程序也是 Ionic
我需要禁用默认 ion-ripple-effect在“ ionic 按钮”中。 我无法禁用 pointer-events因为我需要它。 PS:我引用了以下帖子,但找不到适合 Ionic 4
我是一名优秀的程序员,十分优秀!