0

我有一个形象在我nativescript(与Angular2)的应用程序,在这里我想使图像可点击的不同部分,以显示。例如人体图像,我只想知道用户点击了哪个部分。我怎样才能在Nativescript图像坐标与Angular2

有什么方法来创建图像映射,就像HTML ???

<CardView height="450" width="350" marginTop="10"> 
    <Image src="res://nerves" height="304" width="114" horizontalAlignment="center" verticalAlignment="center"></Image> 
</CardView> 

enter image description here

回答

3

使用(touch)事件您Image元素结合。

下面是当你在图像的第四象限单击打印控制台消息的例子。

import { 
 
    Component 
 
} from '@angular/core'; 
 
import * as platform from 'platform'; 
 
import { 
 
    TouchGestureEventData 
 
} from 'tns-core-modules/ui/gestures'; 
 

 
@Component({ 
 
    moduleId: module.id, 
 
    selector: 'your-component', 
 
    template: ` 
 
    <GridLayout> 
 
     <Image src="res://your_image" width="128" height="128" 
 
      (touch)="touchImage($event)" 
 
      verticalAlignment="middle" horizontalAlignment="center"></Image> 
 
    </GridLayout> 
 
    ` 
 
}) 
 
export class YourComponent { 
 
    touchImage(event: TouchGestureEventData) { 
 
    // This is the density of your screen, so we can divide the measured width/height by it. 
 
    const scale: number = platform.screen.mainScreen.scale; 
 
    if (event.action === 'down') { 
 
     // this is the point that the user just clicked on, expressed as x/y 
 
     // values between 0 and 1. 
 
     const point = { 
 
     y: event.getY()/(event.view.getMeasuredHeight()/scale), 
 
     x: event.getX()/(event.view.getMeasuredWidth()/scale) 
 
     }; 
 

 
     // add custom code to figure out if something significant was "hit" 
 
     if (point.x > 0.5 && point.y > 0.5) { 
 
     console.log('you clicked on the lower right part of the image.'); 
 
     } 
 
    } 
 
    } 
 
}

+0

Thanks..It工作 –