我正在尝试在引导标签上放置传单地图, 但它不起作用。没有显示或丢失的瓷砖和错误的位置。
有没有人知道如何解决这个问题?
这是问题的一个例子: missing tiles
这是我的代码:https://gist.github.com/h3kr/991ac0ee5a88d0cecba27e91c886675e
答案 0 :(得分:1)
您忘记包含Leaflet的CSS文件。
让我引用Leaflet docs:
最新的稳定Leaflet版本托管在CDN上 - 立即开始使用它,将其放在HTML代码的头部:
- (UIImage *)screenshot { UIWindow *mainWindow = [[UIApplication sharedApplication] keyWindow]; UIGraphicsBeginImageContextWithOptions(mainWindow.bounds.size, NO, 1.0); [mainWindow drawViewHierarchyInRect:mainWindow.bounds afterScreenUpdates:NO]; UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return image; }