- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在我的 map 应用程序中,我在 map 上显示一组叠加层。每当我点击叠加层时,我需要显示一个弹出窗口,就像这样
谁能帮我解决这个问题?
最佳答案
是的,您可以设计我们的 self 信息窗口,以便通过点击 map 显示信息。如果您理解,我会向您提供代码,请重播我。
public class MapLocationOverlay extends Overlay {
private boolean isNameAddHold=true;
private Bitmap bitmap,bitCross,bitMoreInformation;
int testX,testY,count=0;
int infoWindowOffsetX,infoWindowOffsetY;
public String name,address,argName,argAddress,argid;
// Store these as global instances so we don't keep reloading every time
private Bitmap bubbleIcon, shadowIcon;
private MapLocationViewer mapLocationViewer;
double toLat, toLng;
private Paint innerPaint, borderPaint, textPaint;
private boolean isRemovePriorPopup=false;
private boolean temp=true,first=true, firstDraw = true;
public boolean tempDefaule=true;
public MoreInformation myMoreInformation;
public PantryLocation location;
// The currently selected Map Location...if any is selected. This tracks whether an information
// window should be displayed & where...i.e. whether a user 'clicked' on a known map location
private PantryLocation selectedMapLocation;
public MapLocationOverlay(MapLocationViewer mapLocationViewer,PantryLocation arglocation) {
this.mapLocationViewer = mapLocationViewer;
location=arglocation;
bubbleIcon = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.bubble);
shadowIcon = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.shadow);
bitmap = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.infowindow);
bitCross = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.crass);
bitMoreInformation = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.more_informations_new);
}
@Override
public boolean onTouchEvent(MotionEvent e, MapView mapView) {
// TODO Auto-generated method stub
if (e.getAction() == 0)
{
this.tempDefaule=false;
}
if (e.getAction() == 1)
{
this.tempDefaule=false;
}
if (e.getAction() == 2)
{
this.tempDefaule=false;
}
return super.onTouchEvent(e, mapView);
}
@Override
public boolean onTap(GeoPoint p, MapView mapView) {
//this.tempDefaule=false;
// Store whether prior popup was displayed so we can call invalidate() & remove it if necessary.
// Next test whether a new popup should be displayed
selectedMapLocation = getHitMapLocation(mapView,p);
mapView.invalidate();
// Lastly return true if we handled this onTap()
return selectedMapLocation != null;
}
@Override
public void draw(Canvas canvas, MapView mapView, boolean shadow) {
drawMapLocations(canvas, mapView, shadow);
//this.tempDefaule=false;
drawInfoWindow(canvas, mapView, shadow);
//this.tempDefaule=false;
}
/**
* Test whether an information balloon should be displayed or a prior balloon hidden.
*/
private PantryLocation getHitMapLocation(MapView mapView, GeoPoint tapPoint) {
// Track which MapLocation was hit...if any
PantryLocation hitMapLocation = null;
RectF hitTestRecr = new RectF();
Point screenCoords = new Point();
ArrayList<PantryLocation> iterator =mapLocationViewer.getMapLocations();
for(int i=0;i<iterator.size();i++) {
PantryLocation testLocation = iterator.get(i);
// Translate the MapLocation's lat/long coordinates to screen coordinates
mapView.getProjection().toPixels(testLocation.getPoint(), screenCoords);
// Create a 'hit' testing Rectangle w/size and coordinates of our icon
// Set the 'hit' testing Rectangle with the size and coordinates of our on screen icon
hitTestRecr.set(-bubbleIcon.getWidth()/2,-bubbleIcon.getHeight(),bubbleIcon.getWidth()/2,0);
hitTestRecr.offset(screenCoords.x,screenCoords.y);
// Finally test for a match between our 'hit' Rectangle and the location clicked by the user
mapView.getProjection().toPixels(tapPoint, screenCoords);
//hitMapLocation = testLocation;
if (hitTestRecr.contains(screenCoords.x,screenCoords.y)) {
hitMapLocation = testLocation;
first = true;
isNameAddHold = true;
break;
}
}
testX=(int)screenCoords.x;
testY=(int)screenCoords.y;
// Lastly clear the newMouseSelection as it has now been processed
tapPoint = null;
if(hitMapLocation==null && selectedMapLocation!=null)
return selectedMapLocation;
return hitMapLocation;
}
private void drawMapLocations(Canvas canvas, MapView mapView, boolean shadow) {
int i=0;count++;
ArrayList<PantryLocation> iterator =mapLocationViewer.getMapLocations();
Point screenCoords = new Point();
for(i=0;i<iterator.size();i++) {
PantryLocation location = iterator.get(i);
mapView.getProjection().toPixels(location.getPoint(), screenCoords);
//mapView.getController().setCenter(location.getPoint());
if (shadow) {
// Only offset the shadow in the y-axis as the shadow is angled so the base is at x=0;
canvas.drawBitmap(shadowIcon, screenCoords.x, screenCoords.y - shadowIcon.getHeight(),null);
} else {
canvas.drawBitmap(bubbleIcon, screenCoords.x - bubbleIcon.getWidth()/2, screenCoords.y - bubbleIcon.getHeight(),null);
}
}
// if(i==iterator.size()){
// this.tempDefaule=false;}
if(tempDefaule==true)
{
PantryLocation location1 = this.location;
//mapView.getProjection().toPixels(location.getPoint(), screenCoords);
Point screenCoord = new Point();
mapView.getController().setCenter(location1.getPoint());
mapView.getController().setZoom(15);
// tempDefaule=false;
//mapView.getController().setCenter(location.getPoint());
}
//tempDefaule=false;
} //mapView.getProjection().toPixels(location.getPoint(), screenCoord);
//canvas.drawBitmap(bubbleIcon, screenCoord.x - bubbleIcon.getWidth()/2, screenCoord.y - bubbleIcon.getHeight(),null);
//mapView.invalidate();
private void drawInfoWindow(Canvas canvas, MapView mapView, boolean shadow) {
//this.tempDefaule=false;
if ( selectedMapLocation != null) {
if ( shadow) {
// Skip painting a shadow in this tutorial
} else {
// First determine the screen coordinates of the selected MapLocation
isRemovePriorPopup=true;
Point selDestinationOffset = new Point();
mapView.getProjection().toPixels(selectedMapLocation.getPoint(), selDestinationOffset);
// Setup the info window with the right size & location
int INFO_WINDOW_WIDTH = 125;
int INFO_WINDOW_HEIGHT = 25;
RectF infoWindowRect = new RectF(0,0,100,20);
RectF closeRect = new RectF(0,0,20,20);
infoWindowOffsetX = selDestinationOffset.x-INFO_WINDOW_WIDTH/2;
infoWindowOffsetY = selDestinationOffset.y-INFO_WINDOW_HEIGHT-bubbleIcon.getHeight();
infoWindowRect.offset(infoWindowOffsetX+95,infoWindowOffsetY-45);
closeRect.offset(infoWindowOffsetX+160,infoWindowOffsetY-90);
Paint myPaintBlack=new Paint();
Paint myPaintWhite=new Paint();
myPaintWhite.setARGB(255, 255, 255, 255);
// Draw inner info window
canvas.drawRoundRect(infoWindowRect, 5, 5, getInnerPaint());
// Draw border for info window
canvas.drawRoundRect(infoWindowRect, 5, 5, getBorderPaint());
// Draw the MapLocation's name
myPaintBlack.setColor(Color.BLACK);
myPaintBlack.setTextSize(20);
canvas.drawBitmap(bitmap, infoWindowOffsetX-50, infoWindowOffsetY-100,getInnerPaint());
if(isNameAddHold)
{
argid=selectedMapLocation.getID();
argName=selectedMapLocation.getName();
name=selectedMapLocation.getName();
toLat = selectedMapLocation.getLatitude();
toLng = selectedMapLocation.getLongitude();
if(name.length()>18)
name=selectedMapLocation.getName().substring(0,18)+"..";
argAddress=selectedMapLocation.getAddress();
address=selectedMapLocation.getAddress();
if(address.length()>30)
address=selectedMapLocation.getAddress().substring(0,30)+"..";
}
canvas.drawText(name,infoWindowOffsetX-45,infoWindowOffsetY-70,myPaintBlack);
myPaintBlack.setTextSize(13);
canvas.drawText(address,infoWindowOffsetX-45,infoWindowOffsetY-55,myPaintBlack);
// Draw inner info window
canvas.drawRoundRect(infoWindowRect, 5, 5, getInnerPaint());
// Draw border for info window
canvas.drawRoundRect(infoWindowRect, 5, 5, getBorderPaint());
// Draw the MapLocation's name
myPaintBlack.setColor(Color.CYAN);
myPaintBlack.setTextSize(11);
//canvas.drawText("Click for more info..",infoWindowOffsetX+105,infoWindowOffsetY-33,myPaintBlack);
canvas.drawBitmap(bitMoreInformation, infoWindowOffsetX+95, infoWindowOffsetY-45,getInnerPaint());
//canvas.drawBitmap(bitCross, infoWindowOffsetX+160, infoWindowOffsetY-90,getInnerPaint());
}
}
if(isRemovePriorPopup)
{
if(((testX>(infoWindowOffsetX+95)&&testX<(infoWindowOffsetX+195)))&&(testY>(infoWindowOffsetY-45)&&testY<(infoWindowOffsetY-25)))
{
if(temp){
try
{
temp=false;
isNameAddHold=false;
isRemovePriorPopup=false;
Context context=mapLocationViewer.cn;
Toast.makeText(context, "Loading...", Toast.LENGTH_SHORT).show();
Intent intent=new Intent(context, MoreInformation.class);
intent.putExtra("Id",argid);
intent.putExtra("Name",argName);
intent.putExtra("Address",argAddress);
intent.putExtra("Latitude",toLat);
intent.putExtra("Longitude",toLng);
context.startActivity(intent);
}
catch (Exception ex)
{
Log.d("Redirected Error :", ex.getMessage());
}
//canvas.drawText("This is for Testing",testX,testY,myPaintBlack);
}}
else if(((testX>(infoWindowOffsetX+160)&&testX<(infoWindowOffsetX+180)))&&(testY>(infoWindowOffsetY-90)&&testY<(infoWindowOffsetY-70)))
{
if(isRemovePriorPopup)
{
isRemovePriorPopup=false;
selectedMapLocation=null;
draw(canvas, mapView, shadow);
// mapLocationViewer.setDZoom();
}
}
}
}
public Paint getInnerPaint() {
if ( innerPaint == null) {
innerPaint = new Paint();
innerPaint.setARGB(225, 75, 75, 75); //gray
innerPaint.setAntiAlias(true);
}
return innerPaint;
}
public Paint getBorderPaint() {
if ( borderPaint == null) {
borderPaint = new Paint();
borderPaint.setARGB(255, 255, 255, 255);
borderPaint.setAntiAlias(true);
borderPaint.setStyle(Style.STROKE);
borderPaint.setStrokeWidth(2);
}
return borderPaint;
}
public Paint getTextPaint() {
if ( textPaint == null) {
textPaint = new Paint();
textPaint.setARGB(255, 255, 255, 255);
textPaint.setAntiAlias(true);
}
return textPaint;
}
}
在这段代码中我设计了一个绘制信息窗口的函数
关于android - 如何在android中点击覆盖时显示弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4486864/
我连续有 11 个图像,如果鼠标悬停在其中一个图像上,我希望弹出一个弹出窗口。所以每 11 个图像都有不同的弹出窗口。我已经有一些代码可以执行此操作,但它仅适用于第一张图像。 代码:index.htm
是否可以从 NSColorWell 制作一个 NSColorPanel“弹出”,几乎像一个弹出菜单? 我不喜欢它作为调色板的实现方式,因为有时它与哪个 NSColorWell 关联并不明显。 谢谢!
我正在考虑一个想法,基本上我想要一个带有 NSPopoverController 的 NSStatusItem 。我读到了人们遇到的所有问题,但我只是想尝试一下。现在有干净的方法吗?我见过的所有版本都
如何获取 JS 打开的弹出窗口的 url。这是我的代码: var _url = 'someurlhere'; var popupwindow = window.open(_url, "Popu
我正在设计一个网页,我希望当用户单击链接时,弹出窗口(新窗口)将打开一个链接网页。我的代码如下所示 function win(add,w,h) { window.open(add,"","widt
我正在寻找 C 中的简单堆栈实现,并找到了类似的东西: void pop(struct stack **top) { struct stack *temp; temp = malloc(s
我正在尝试使用 paypal 实现登录,我有 2 个不同的主机域 1- www.example.com 2- www.example.de 对于 paypal,我需要为此目的选择一个返回 URL,我选
我正在尝试找出如何复制此处显示的“弹出式” View 动画:https://imgur.com/a/irFqdiP .我正在使用当前代码来显示我的 viewController,但目前只有一个淡入淡出
有谁知道在 Windows 2000 或更高版本上以编程方式关闭 CD 托盘的方法?打开 CD 托盘存在,但我似乎无法关闭它,尤其是在 W2k 下。 如果可能的话,我特别想从批处理文件中寻找一种方法来
当您访问http://www.daniweb.com时你得到一个弹出窗口,这叫什么 + 知道怎么做吗? 感谢您的回复,只有模态加载动画的最简单方法是什么,即页面加载时动画显示以及动画何时完成? ASP
我正在为 Unity 引擎中的音频过滤器创建一个 C# 脚本。 我的问题是,在通过我的过滤器运行后,生成的音频具有一致且频繁的“咔哒声”、“砰砰声”或“跳过声”。听起来有点像旧 radio 。 我不确
我必须隐藏浏览器的地址栏。我正在使用这段代码: var winFeature = 'location=no,toolbar=no,menubar=no,scrollbars=yes,r
推荐一个button 弹起pickerview的源码,也可以作为工具类使用。 利用inputview 做键盘弹起动画。该如何做呢? 1.继承uiview 2.重写属性&方法
我在这里有一个问题,我已经工作了几个小时。 我正在导入一个 Excel 文件,并使用此代码来执行此操作: Dim objExcel As Excel.Application Di
我基本上是从 UITableViewController 推送 UIView,它包含的只是 UIWebView。但是,当我删除 UIView 以返回到 UITableView 时,应用程序崩溃了。 -
我有几个由导航 Controller 控制的 View Controller 。 例如,viewController A 和 viewController B 都可以将 viewController
我使用新的Gmail API为用户创建草稿。 API响应提供了新创建的消息ID。 然后,我可以使用URL https://mail.google.com/mail/#drafts?compose=[m
Redis列表实现了哪种内部数据结构以实现这一目的?链表将需要O(n)索引,而数组将需要O(n)左/右推/弹出。 最佳答案 根据official documentation,它们被实现为linked
我正在使用 WPF Popup 控件,它显示背景为黑色。我在其中放置了一个 StackPanel 并设置了 Background="Transparent",但这没有帮助。
我希望页面内的容器在事件时占据页面的整个宽度并覆盖在其他所有内容上。这是我目前所拥有的,但它没有按我想要的方式工作: $(function() { $('.main a').click( fu
我是一名优秀的程序员,十分优秀!