|
|
@ -0,0 +1,120 @@
|
||||||
|
# Uncomment the next line to define a global platform for your project
|
||||||
|
source 'https://gitee.com/mirrors/CocoaPods-Specs.git'
|
||||||
|
platform :ios, '15.0'
|
||||||
|
|
||||||
|
target 'QuickLocation' do
|
||||||
|
# Comment the next line if you don't want to use dynamic frameworks
|
||||||
|
use_frameworks!
|
||||||
|
|
||||||
|
# Pods for QuickLocation
|
||||||
|
# Pods for Base
|
||||||
|
pod 'Moya'
|
||||||
|
pod 'ObjectMapper'
|
||||||
|
pod 'RxCocoa'
|
||||||
|
pod 'RxSwift'
|
||||||
|
pod 'SwiftyUserDefaults'
|
||||||
|
pod 'SwiftyJSON'
|
||||||
|
pod 'URLNavigator'
|
||||||
|
pod 'RxDataSources'
|
||||||
|
pod 'RxSwiftExt'
|
||||||
|
pod 'SwiftDate'
|
||||||
|
#pod 'RxGesture'
|
||||||
|
pod 'CocoaLumberjack/Swift'
|
||||||
|
pod 'KingfisherWebP'
|
||||||
|
pod 'Masonry'
|
||||||
|
|
||||||
|
#工具
|
||||||
|
#pod 'FLEX', :configurations => ['Debug', 'AdHoc']
|
||||||
|
pod 'HXPHPicker'
|
||||||
|
pod 'SwiftKeychainWrapper'
|
||||||
|
pod 'SGQRCode', '~> 4.1.0' #扫描
|
||||||
|
#pod 'PGDatePicker'
|
||||||
|
pod 'IQKeyboardManagerSwift'
|
||||||
|
|
||||||
|
#UI
|
||||||
|
pod 'SnapKit'
|
||||||
|
pod 'MJRefresh'
|
||||||
|
pod 'MBProgressHUD', :git => 'https://github.com/jdg/MBProgressHUD.git'
|
||||||
|
pod 'MarqueeLabel'
|
||||||
|
pod 'Popover'
|
||||||
|
|
||||||
|
#第三方SDk
|
||||||
|
pod 'GYSDK' #个推一键登录
|
||||||
|
|
||||||
|
#高德地图
|
||||||
|
pod 'AMap3DMap' #3D地图SDK
|
||||||
|
pod 'AMapSearch' #地图SDK搜索功能
|
||||||
|
pod 'AMapLocation' #定位SDK
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
post_install do |installer|
|
||||||
|
installer.pods_project.targets.each do |target|
|
||||||
|
target.build_configurations.each do |config|
|
||||||
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# These frameworks ship without a valid arm64-simulator slice (even some
|
||||||
|
# xcframeworks contain device-only arm64). Linking them for simulator on
|
||||||
|
# Xcode 15+ (arm64-only simulator) fails. Fix: remove EXCLUDED_ARCHS (so
|
||||||
|
# simulator destinations appear), strip them from general OTHER_LDFLAGS,
|
||||||
|
# and add them back only via OTHER_LDFLAGS[sdk=iphoneos*].
|
||||||
|
device_only_fws = %w[MAMapKit AMapFoundationKit AMapLocationKit AMapSearchKit ZXSDK GeYanSdk GTCommonSDK]
|
||||||
|
device_only_dirs = %w[AMap3DMap AMapFoundation AMapLocation AMapSearch ZXSDK GYSDK GTCommonSDK]
|
||||||
|
|
||||||
|
Dir.glob(File.join(installer.sandbox.root, 'Target Support Files', '**', '*.xcconfig')).each do |path|
|
||||||
|
content = File.read(path)
|
||||||
|
|
||||||
|
# Remove arm64 exclusion
|
||||||
|
content.gsub!(/^EXCLUDED_ARCHS\[sdk=iphonesimulator\*\] = arm64.*\n?/, '')
|
||||||
|
|
||||||
|
if content =~ /^OTHER_LDFLAGS = (.+)$/
|
||||||
|
ldflags = $1
|
||||||
|
stripped_ld = false
|
||||||
|
|
||||||
|
device_only_fws.each do |fw|
|
||||||
|
if ldflags.gsub!(/ *-(weak_)?framework "#{fw}"/, '')
|
||||||
|
stripped_ld = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
content.sub!(/^OTHER_LDFLAGS = .+$/, "OTHER_LDFLAGS = #{ldflags}")
|
||||||
|
|
||||||
|
# Remove any old conditional lines
|
||||||
|
content.gsub!(/^OTHER_LDFLAGS\[sdk=iphonesimulator\*\].*\n?/, '')
|
||||||
|
content.gsub!(/^OTHER_LDFLAGS\[sdk=iphoneos\*\].*\n?/, '')
|
||||||
|
|
||||||
|
# Only add device-only conditional if we actually stripped something
|
||||||
|
if stripped_ld
|
||||||
|
device_flags = device_only_fws.map { |fw| %(-framework "#{fw}") }.join(' ')
|
||||||
|
content += "\nOTHER_LDFLAGS[sdk=iphoneos*] = $(inherited) #{device_flags}\n"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Strip device-only dirs from FRAMEWORK_SEARCH_PATHS and move to iphoneos only
|
||||||
|
if content =~ /^FRAMEWORK_SEARCH_PATHS = (.+)$/
|
||||||
|
fsp = $1
|
||||||
|
device_search_paths = []
|
||||||
|
|
||||||
|
device_only_dirs.each do |dir|
|
||||||
|
%w[PODS_ROOT PODS_CONFIGURATION_BUILD_DIR PODS_XCFRAMEWORKS_BUILD_DIR].each do |var|
|
||||||
|
pattern = / *"\$\{#{var}\}\/#{dir}"/
|
||||||
|
if fsp.match?(pattern)
|
||||||
|
fsp.gsub!(pattern, '')
|
||||||
|
device_search_paths << "\"${#{var}}/#{dir}\""
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
content.sub!(/^FRAMEWORK_SEARCH_PATHS = .+$/, "FRAMEWORK_SEARCH_PATHS = #{fsp}")
|
||||||
|
content.gsub!(/^FRAMEWORK_SEARCH_PATHS\[sdk=iphoneos\*\].*\n?/, '')
|
||||||
|
|
||||||
|
unless device_search_paths.empty?
|
||||||
|
content += "\nFRAMEWORK_SEARCH_PATHS[sdk=iphoneos*] = $(inherited) #{device_search_paths.uniq.join(' ')}\n"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
File.write(path, content)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
@ -0,0 +1,243 @@
|
||||||
|
PODS:
|
||||||
|
- Alamofire (5.10.1)
|
||||||
|
- AMap3DMap (11.1.200):
|
||||||
|
- AMapFoundation (>= 1.8.7)
|
||||||
|
- AMapFoundation (1.8.7)
|
||||||
|
- AMapLocation (2.11.1):
|
||||||
|
- AMapFoundation (>= 1.8.7)
|
||||||
|
- AMapSearch (9.7.5):
|
||||||
|
- AMapFoundation (>= 1.8.0)
|
||||||
|
- CocoaLumberjack/Core (3.9.1)
|
||||||
|
- CocoaLumberjack/Swift (3.9.1):
|
||||||
|
- CocoaLumberjack/Core
|
||||||
|
- Differentiator (5.0.0)
|
||||||
|
- GTCommonSDK (3.2.3.0):
|
||||||
|
- ZXSDK
|
||||||
|
- GYSDK (3.1.3.0):
|
||||||
|
- GTCommonSDK (>= 3.0.0.0)
|
||||||
|
- HXPHPicker (1.1.5):
|
||||||
|
- HXPHPicker/Core (= 1.1.5)
|
||||||
|
- HXPHPicker/Editor (= 1.1.5)
|
||||||
|
- HXPHPicker/Picker (= 1.1.5)
|
||||||
|
- HXPHPicker/Core (1.1.5)
|
||||||
|
- HXPHPicker/Editor (1.1.5):
|
||||||
|
- HXPHPicker/Core
|
||||||
|
- HXPHPicker/Picker (1.1.5):
|
||||||
|
- HXPHPicker/Core
|
||||||
|
- IQKeyboardCore (1.0.8)
|
||||||
|
- IQKeyboardManagerSwift (8.0.1):
|
||||||
|
- IQKeyboardManagerSwift/Appearance (= 8.0.1)
|
||||||
|
- IQKeyboardManagerSwift/Core (= 8.0.1)
|
||||||
|
- IQKeyboardManagerSwift/IQKeyboardReturnManager (= 8.0.1)
|
||||||
|
- IQKeyboardManagerSwift/IQKeyboardToolbarManager (= 8.0.1)
|
||||||
|
- IQKeyboardManagerSwift/IQTextView (= 8.0.1)
|
||||||
|
- IQKeyboardManagerSwift/Resign (= 8.0.1)
|
||||||
|
- IQKeyboardManagerSwift/Appearance (8.0.1):
|
||||||
|
- IQKeyboardManagerSwift/Core
|
||||||
|
- IQKeyboardManagerSwift/Core (8.0.1):
|
||||||
|
- IQKeyboardNotification
|
||||||
|
- IQTextInputViewNotification
|
||||||
|
- IQKeyboardManagerSwift/IQKeyboardReturnManager (8.0.1):
|
||||||
|
- IQKeyboardReturnManager
|
||||||
|
- IQKeyboardManagerSwift/IQKeyboardToolbarManager (8.0.1):
|
||||||
|
- IQKeyboardManagerSwift/Core
|
||||||
|
- IQKeyboardToolbarManager
|
||||||
|
- IQKeyboardManagerSwift/IQTextView (8.0.1):
|
||||||
|
- IQTextView
|
||||||
|
- IQKeyboardManagerSwift/Resign (8.0.1):
|
||||||
|
- IQKeyboardManagerSwift/Core
|
||||||
|
- IQKeyboardNotification (1.0.6)
|
||||||
|
- IQKeyboardReturnManager (1.0.6):
|
||||||
|
- IQKeyboardCore
|
||||||
|
- IQKeyboardToolbar (1.1.3):
|
||||||
|
- IQKeyboardToolbar/Core (= 1.1.3)
|
||||||
|
- IQKeyboardToolbar/Core (1.1.3):
|
||||||
|
- IQKeyboardCore
|
||||||
|
- IQKeyboardToolbar/Placeholderable
|
||||||
|
- IQKeyboardToolbar/Placeholderable (1.1.3)
|
||||||
|
- IQKeyboardToolbarManager (1.1.5):
|
||||||
|
- IQKeyboardToolbar
|
||||||
|
- IQTextInputViewNotification
|
||||||
|
- IQTextInputViewNotification (1.0.9):
|
||||||
|
- IQKeyboardCore
|
||||||
|
- IQTextView (1.0.5):
|
||||||
|
- IQKeyboardToolbar/Placeholderable
|
||||||
|
- Kingfisher (8.1.1)
|
||||||
|
- KingfisherWebP (1.7.3):
|
||||||
|
- Kingfisher (~> 8.0)
|
||||||
|
- libwebp (>= 1.1.0)
|
||||||
|
- libwebp (1.5.0):
|
||||||
|
- libwebp/demux (= 1.5.0)
|
||||||
|
- libwebp/mux (= 1.5.0)
|
||||||
|
- libwebp/sharpyuv (= 1.5.0)
|
||||||
|
- libwebp/webp (= 1.5.0)
|
||||||
|
- libwebp/demux (1.5.0):
|
||||||
|
- libwebp/webp
|
||||||
|
- libwebp/mux (1.5.0):
|
||||||
|
- libwebp/demux
|
||||||
|
- libwebp/sharpyuv (1.5.0)
|
||||||
|
- libwebp/webp (1.5.0):
|
||||||
|
- libwebp/sharpyuv
|
||||||
|
- MarqueeLabel (4.5.3)
|
||||||
|
- Masonry (1.1.0)
|
||||||
|
- MBProgressHUD (1.2.0)
|
||||||
|
- MJRefresh (3.7.9)
|
||||||
|
- Moya (15.0.0):
|
||||||
|
- Moya/Core (= 15.0.0)
|
||||||
|
- Moya/Core (15.0.0):
|
||||||
|
- Alamofire (~> 5.0)
|
||||||
|
- ObjectMapper (4.4.2)
|
||||||
|
- Popover (1.3.0)
|
||||||
|
- RxCocoa (6.8.0):
|
||||||
|
- RxRelay (= 6.8.0)
|
||||||
|
- RxSwift (= 6.8.0)
|
||||||
|
- RxDataSources (5.0.0):
|
||||||
|
- Differentiator (~> 5.0)
|
||||||
|
- RxCocoa (~> 6.0)
|
||||||
|
- RxSwift (~> 6.0)
|
||||||
|
- RxRelay (6.8.0):
|
||||||
|
- RxSwift (= 6.8.0)
|
||||||
|
- RxSwift (6.8.0)
|
||||||
|
- RxSwiftExt (6.2.1):
|
||||||
|
- RxSwiftExt/Core (= 6.2.1)
|
||||||
|
- RxSwiftExt/RxCocoa (= 6.2.1)
|
||||||
|
- RxSwiftExt/Core (6.2.1):
|
||||||
|
- RxSwift (~> 6.0)
|
||||||
|
- RxSwiftExt/RxCocoa (6.2.1):
|
||||||
|
- RxCocoa (~> 6.0)
|
||||||
|
- RxSwiftExt/Core
|
||||||
|
- SGQRCode (4.1.0)
|
||||||
|
- SnapKit (5.7.1)
|
||||||
|
- SwiftDate (7.0.0)
|
||||||
|
- SwiftKeychainWrapper (4.0.1)
|
||||||
|
- SwiftyJSON (5.0.2)
|
||||||
|
- SwiftyUserDefaults (5.3.0)
|
||||||
|
- URLNavigator (2.5.1)
|
||||||
|
- ZXSDK (3.3.2)
|
||||||
|
|
||||||
|
DEPENDENCIES:
|
||||||
|
- AMap3DMap
|
||||||
|
- AMapLocation
|
||||||
|
- AMapSearch
|
||||||
|
- CocoaLumberjack/Swift
|
||||||
|
- GYSDK
|
||||||
|
- HXPHPicker
|
||||||
|
- IQKeyboardManagerSwift
|
||||||
|
- KingfisherWebP
|
||||||
|
- MarqueeLabel
|
||||||
|
- Masonry
|
||||||
|
- MBProgressHUD (from `https://github.com/jdg/MBProgressHUD.git`)
|
||||||
|
- MJRefresh
|
||||||
|
- Moya
|
||||||
|
- ObjectMapper
|
||||||
|
- Popover
|
||||||
|
- RxCocoa
|
||||||
|
- RxDataSources
|
||||||
|
- RxSwift
|
||||||
|
- RxSwiftExt
|
||||||
|
- SGQRCode (~> 4.1.0)
|
||||||
|
- SnapKit
|
||||||
|
- SwiftDate
|
||||||
|
- SwiftKeychainWrapper
|
||||||
|
- SwiftyJSON
|
||||||
|
- SwiftyUserDefaults
|
||||||
|
- URLNavigator
|
||||||
|
|
||||||
|
SPEC REPOS:
|
||||||
|
https://gitee.com/mirrors/CocoaPods-Specs.git:
|
||||||
|
- Alamofire
|
||||||
|
- AMap3DMap
|
||||||
|
- AMapFoundation
|
||||||
|
- AMapLocation
|
||||||
|
- AMapSearch
|
||||||
|
- CocoaLumberjack
|
||||||
|
- Differentiator
|
||||||
|
- GTCommonSDK
|
||||||
|
- GYSDK
|
||||||
|
- HXPHPicker
|
||||||
|
- IQKeyboardCore
|
||||||
|
- IQKeyboardManagerSwift
|
||||||
|
- IQKeyboardNotification
|
||||||
|
- IQKeyboardReturnManager
|
||||||
|
- IQKeyboardToolbar
|
||||||
|
- IQKeyboardToolbarManager
|
||||||
|
- IQTextInputViewNotification
|
||||||
|
- IQTextView
|
||||||
|
- Kingfisher
|
||||||
|
- KingfisherWebP
|
||||||
|
- libwebp
|
||||||
|
- MarqueeLabel
|
||||||
|
- Masonry
|
||||||
|
- MJRefresh
|
||||||
|
- Moya
|
||||||
|
- ObjectMapper
|
||||||
|
- Popover
|
||||||
|
- RxCocoa
|
||||||
|
- RxDataSources
|
||||||
|
- RxRelay
|
||||||
|
- RxSwift
|
||||||
|
- RxSwiftExt
|
||||||
|
- SGQRCode
|
||||||
|
- SnapKit
|
||||||
|
- SwiftDate
|
||||||
|
- SwiftKeychainWrapper
|
||||||
|
- SwiftyJSON
|
||||||
|
- SwiftyUserDefaults
|
||||||
|
- URLNavigator
|
||||||
|
- ZXSDK
|
||||||
|
|
||||||
|
EXTERNAL SOURCES:
|
||||||
|
MBProgressHUD:
|
||||||
|
:git: https://github.com/jdg/MBProgressHUD.git
|
||||||
|
|
||||||
|
CHECKOUT OPTIONS:
|
||||||
|
MBProgressHUD:
|
||||||
|
:commit: 4a7c5f3e53cdea77c5dcb8578c2ee5acacdf6781
|
||||||
|
:git: https://github.com/jdg/MBProgressHUD.git
|
||||||
|
|
||||||
|
SPEC CHECKSUMS:
|
||||||
|
Alamofire: 840d2a1ad82355b536ec6ba5f97e5bfa54600ca3
|
||||||
|
AMap3DMap: 89c17fdbca2f25e4b46d6a45a8e50346980fc799
|
||||||
|
AMapFoundation: e99da1cc722528c60b39340b4763a95305f6c55e
|
||||||
|
AMapLocation: 6e44f50b044dc54c6b3dcb1dee5ffd6de2689e41
|
||||||
|
AMapSearch: 29224a399b56b17da1540e4312fc4d9dc37342bb
|
||||||
|
CocoaLumberjack: e4ba3b414dfca8c1916c6303d37f63b3a95134c6
|
||||||
|
Differentiator: e8497ceab83c1b10ca233716d547b9af21b9344d
|
||||||
|
GTCommonSDK: 238c6735add91e654f8564638854686ee3dcb4ac
|
||||||
|
GYSDK: db5f4b3aae8df06201be5e786076211ec11791be
|
||||||
|
HXPHPicker: 451f6af62845d60d5dd2235f4665d81f2688a51b
|
||||||
|
IQKeyboardCore: 8652977ec919cf5351aa2977fedd1a6546476fbc
|
||||||
|
IQKeyboardManagerSwift: 835fc9c6e4732398113406d84900ad2e8f141218
|
||||||
|
IQKeyboardNotification: eb4910401f5a0e68f97e71c62f8a0c5b7e9d535c
|
||||||
|
IQKeyboardReturnManager: fcbf51fc68d7536fc1fbcca5231c4e82576b12ac
|
||||||
|
IQKeyboardToolbar: 9fe900f8e7def414be4025af0ca098df764d4fe3
|
||||||
|
IQKeyboardToolbarManager: d449479b5843d4a3fb902d03bf62d6ca031ac20e
|
||||||
|
IQTextInputViewNotification: 3b9fb27a16e7ee8958cc9092cfb07a1a9e1fd559
|
||||||
|
IQTextView: ae13b4922f22e6f027f62c557d9f4f236b19d5c7
|
||||||
|
Kingfisher: fc2788e497306f97fdef6e4df49f02106cb57788
|
||||||
|
KingfisherWebP: 064869d5f1201396ec121dcc4c9cfbdba6ecb900
|
||||||
|
libwebp: 02b23773aedb6ff1fd38cec7a77b81414c6842a8
|
||||||
|
MarqueeLabel: 0c57d4c6634e04a6d015af79f7c9a175b2309525
|
||||||
|
Masonry: 678fab65091a9290e40e2832a55e7ab731aad201
|
||||||
|
MBProgressHUD: 1b0fb447e80a0fda94808180750e8b78a07b3cd2
|
||||||
|
MJRefresh: ff9e531227924c84ce459338414550a05d2aea78
|
||||||
|
Moya: 138f0573e53411fb3dc17016add0b748dfbd78ee
|
||||||
|
ObjectMapper: e6e4d91ff7f2861df7aecc536c92d8363f4c9677
|
||||||
|
Popover: 10e1d9528f81d9504df984b7b3f491292bc1822d
|
||||||
|
RxCocoa: 2d33c1e1e5d66492052ad46b11024ae287572880
|
||||||
|
RxDataSources: aa47cc1ed6c500fa0dfecac5c979b723542d79cf
|
||||||
|
RxRelay: 335c78b926a2aea8d863a6d25f1ed3b5ad8e8705
|
||||||
|
RxSwift: 4e28be97cbcfeee614af26d83415febbf2bf6f45
|
||||||
|
RxSwiftExt: 43aaacb6a4d3c69c55e9d1cf4f79920043d13583
|
||||||
|
SGQRCode: 6ad664d63f38f2842503bc5087812c5a3136d924
|
||||||
|
SnapKit: d612e99e678a2d3b95bf60b0705ed0a35c03484a
|
||||||
|
SwiftDate: bbc26e26fc8c0c33fbee8c140c5e8a68293a148a
|
||||||
|
SwiftKeychainWrapper: 807ba1d63c33a7d0613288512399cd1eda1e470c
|
||||||
|
SwiftyJSON: f5b1bf1cd8dd53cd25887ac0eabcfd92301c6a5a
|
||||||
|
SwiftyUserDefaults: 63f80248cf5bfb3458825d9a78f2eb7e1293a040
|
||||||
|
URLNavigator: e9c0426ba6e6ac57f34d018bbf3df840797f984d
|
||||||
|
ZXSDK: 786338c0a18e98e03eda00699c3bfd2700b97117
|
||||||
|
|
||||||
|
PODFILE CHECKSUM: 8221656bba011c856037590658f6282ed7f4e02c
|
||||||
|
|
||||||
|
COCOAPODS: 1.16.2
|
||||||
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/3d_navi_sky_day.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/3d_sky_day.data
generated
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/3d_sky_night.data
generated
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/1015_1.png
generated
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/1015_2.png
generated
Normal file
|
After Width: | Height: | Size: 108 B |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/1016_1.png
generated
Normal file
|
After Width: | Height: | Size: 370 B |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/1016_2.png
generated
Normal file
|
After Width: | Height: | Size: 297 B |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/cross_bk_grass_day.png
generated
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/cross_bk_grass_night.png
generated
Normal file
|
After Width: | Height: | Size: 59 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/cross_sky_day.png
generated
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/cross_sky_night.png
generated
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/crossing_day_bk.data
generated
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/crossing_nigth_bk.data
generated
Normal file
|
After Width: | Height: | Size: 752 B |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/d_yellow_day.png
generated
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/d_yellow_night.png
generated
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/exit_label_bk_main_day.png
generated
Normal file
|
After Width: | Height: | Size: 175 B |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/exit_label_bk_secondary_day.png
generated
Normal file
|
After Width: | Height: | Size: 179 B |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/grass_day.png
generated
Normal file
|
After Width: | Height: | Size: 82 B |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/grass_night.png
generated
Normal file
|
After Width: | Height: | Size: 82 B |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/icons_40_25_1736924274.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/icons_42_25_1617197042.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/road_bottom_day.png
generated
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/road_bottom_night.png
generated
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/roadbk_main_day.png
generated
Normal file
|
After Width: | Height: | Size: 99 B |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/VM3DRes/roadbk_main_night.png
generated
Normal file
|
After Width: | Height: | Size: 82 B |
|
|
@ -0,0 +1,191 @@
|
||||||
|
info face="Arial" size=32 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
|
||||||
|
common lineHeight=32 base=26 scaleW=256 scaleH=256 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0
|
||||||
|
page id=0 file="anscii_0.png"
|
||||||
|
chars count=95
|
||||||
|
char id=32 x=110 y=22 width=3 height=1 xoffset=-1 yoffset=31 xadvance=8 page=0 chnl=15
|
||||||
|
char id=33 x=199 y=63 width=4 height=20 xoffset=2 yoffset=6 xadvance=8 page=0 chnl=15
|
||||||
|
char id=34 x=242 y=79 width=10 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=15
|
||||||
|
char id=35 x=0 y=48 width=16 height=20 xoffset=-1 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=36 x=94 y=0 width=15 height=23 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=15
|
||||||
|
char id=37 x=161 y=0 width=22 height=20 xoffset=1 yoffset=6 xadvance=24 page=0 chnl=15
|
||||||
|
char id=38 x=132 y=21 width=17 height=20 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=15
|
||||||
|
char id=39 x=0 y=106 width=5 height=7 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=15
|
||||||
|
char id=40 x=47 y=0 width=8 height=25 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=15
|
||||||
|
char id=41 x=56 y=0 width=8 height=25 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=15
|
||||||
|
char id=42 x=230 y=79 width=11 height=8 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=15
|
||||||
|
char id=43 x=187 y=84 width=14 height=12 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=15
|
||||||
|
char id=44 x=6 y=106 width=4 height=6 xoffset=2 yoffset=24 xadvance=8 page=0 chnl=15
|
||||||
|
char id=45 x=53 y=106 width=9 height=2 xoffset=0 yoffset=18 xadvance=9 page=0 chnl=15
|
||||||
|
char id=46 x=209 y=79 width=4 height=2 xoffset=2 yoffset=24 xadvance=8 page=0 chnl=15
|
||||||
|
char id=47 x=153 y=63 width=10 height=20 xoffset=-1 yoffset=6 xadvance=8 page=0 chnl=15
|
||||||
|
char id=48 x=15 y=69 width=14 height=20 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=49 x=164 y=63 width=9 height=20 xoffset=2 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=50 x=134 y=42 width=14 height=20 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=51 x=59 y=68 width=13 height=20 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=52 x=179 y=42 width=14 height=20 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=53 x=45 y=69 width=13 height=20 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=54 x=194 y=42 width=14 height=20 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=55 x=115 y=66 width=13 height=20 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=56 x=102 y=45 width=15 height=20 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=57 x=118 y=43 width=15 height=20 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=58 x=251 y=63 width=4 height=15 xoffset=2 yoffset=11 xadvance=8 page=0 chnl=15
|
||||||
|
char id=59 x=204 y=63 width=4 height=19 xoffset=2 yoffset=11 xadvance=8 page=0 chnl=15
|
||||||
|
char id=60 x=172 y=84 width=14 height=13 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=15
|
||||||
|
char id=61 x=215 y=79 width=14 height=8 xoffset=1 yoffset=12 xadvance=16 page=0 chnl=15
|
||||||
|
char id=62 x=157 y=84 width=14 height=13 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=15
|
||||||
|
char id=63 x=101 y=68 width=13 height=20 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=64 x=0 y=0 width=26 height=26 xoffset=1 yoffset=6 xadvance=27 page=0 chnl=15
|
||||||
|
char id=65 x=227 y=0 width=19 height=20 xoffset=-1 yoffset=6 xadvance=18 page=0 chnl=15
|
||||||
|
char id=66 x=17 y=48 width=16 height=20 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=15
|
||||||
|
char id=67 x=58 y=26 width=18 height=20 xoffset=1 yoffset=6 xadvance=20 page=0 chnl=15
|
||||||
|
char id=68 x=168 y=21 width=17 height=20 xoffset=2 yoffset=6 xadvance=20 page=0 chnl=15
|
||||||
|
char id=69 x=51 y=47 width=16 height=20 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=15
|
||||||
|
char id=70 x=240 y=21 width=15 height=20 xoffset=2 yoffset=6 xadvance=17 page=0 chnl=15
|
||||||
|
char id=71 x=0 y=27 width=19 height=20 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=15
|
||||||
|
char id=72 x=186 y=21 width=17 height=20 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=15
|
||||||
|
char id=73 x=184 y=63 width=4 height=20 xoffset=2 yoffset=6 xadvance=8 page=0 chnl=15
|
||||||
|
char id=74 x=129 y=64 width=12 height=20 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15
|
||||||
|
char id=75 x=39 y=26 width=18 height=20 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=15
|
||||||
|
char id=76 x=0 y=69 width=14 height=20 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=77 x=184 y=0 width=21 height=20 xoffset=1 yoffset=6 xadvance=23 page=0 chnl=15
|
||||||
|
char id=78 x=96 y=24 width=17 height=20 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=15
|
||||||
|
char id=79 x=206 y=0 width=20 height=20 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=15
|
||||||
|
char id=80 x=85 y=47 width=16 height=20 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=15
|
||||||
|
char id=81 x=110 y=0 width=21 height=21 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=15
|
||||||
|
char id=82 x=77 y=26 width=18 height=20 xoffset=2 yoffset=6 xadvance=20 page=0 chnl=15
|
||||||
|
char id=83 x=68 y=47 width=16 height=20 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=15
|
||||||
|
char id=84 x=34 y=48 width=16 height=20 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=15
|
||||||
|
char id=85 x=204 y=21 width=17 height=20 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=15
|
||||||
|
char id=86 x=222 y=21 width=17 height=20 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=15
|
||||||
|
char id=87 x=132 y=0 width=28 height=20 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=15
|
||||||
|
char id=88 x=150 y=21 width=17 height=20 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=15
|
||||||
|
char id=89 x=20 y=27 width=18 height=20 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=15
|
||||||
|
char id=90 x=114 y=22 width=17 height=20 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=15
|
||||||
|
char id=91 x=73 y=0 width=7 height=25 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15
|
||||||
|
char id=92 x=174 y=63 width=9 height=20 xoffset=-1 yoffset=6 xadvance=8 page=0 chnl=15
|
||||||
|
char id=93 x=65 y=0 width=7 height=25 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=15
|
||||||
|
char id=94 x=202 y=84 width=12 height=10 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=15
|
||||||
|
char id=95 x=35 y=106 width=17 height=2 xoffset=-1 yoffset=29 xadvance=15 page=0 chnl=15
|
||||||
|
char id=96 x=28 y=106 width=6 height=4 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=15
|
||||||
|
char id=97 x=48 y=90 width=14 height=15 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15
|
||||||
|
char id=98 x=149 y=42 width=14 height=20 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=99 x=106 y=89 width=13 height=15 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=15
|
||||||
|
char id=100 x=164 y=42 width=14 height=20 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=101 x=0 y=90 width=15 height=15 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15
|
||||||
|
char id=102 x=142 y=63 width=10 height=20 xoffset=-1 yoffset=6 xadvance=7 page=0 chnl=15
|
||||||
|
char id=103 x=209 y=42 width=14 height=20 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15
|
||||||
|
char id=104 x=73 y=68 width=13 height=20 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=15
|
||||||
|
char id=105 x=189 y=63 width=4 height=20 xoffset=1 yoffset=6 xadvance=6 page=0 chnl=15
|
||||||
|
char id=106 x=81 y=0 width=7 height=25 xoffset=-2 yoffset=6 xadvance=6 page=0 chnl=15
|
||||||
|
char id=107 x=87 y=68 width=13 height=20 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=15
|
||||||
|
char id=108 x=194 y=63 width=4 height=20 xoffset=1 yoffset=6 xadvance=6 page=0 chnl=15
|
||||||
|
char id=109 x=209 y=63 width=20 height=15 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=15
|
||||||
|
char id=110 x=78 y=89 width=13 height=15 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=15
|
||||||
|
char id=111 x=16 y=90 width=15 height=15 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15
|
||||||
|
char id=112 x=30 y=69 width=14 height=20 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=15
|
||||||
|
char id=113 x=224 y=42 width=14 height=20 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15
|
||||||
|
char id=114 x=147 y=84 width=9 height=15 xoffset=1 yoffset=11 xadvance=9 page=0 chnl=15
|
||||||
|
char id=115 x=63 y=89 width=14 height=15 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=15
|
||||||
|
char id=116 x=247 y=0 width=8 height=20 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=15
|
||||||
|
char id=117 x=92 y=89 width=13 height=15 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=15
|
||||||
|
char id=118 x=32 y=90 width=15 height=15 xoffset=-1 yoffset=11 xadvance=13 page=0 chnl=15
|
||||||
|
char id=119 x=230 y=63 width=20 height=15 xoffset=-1 yoffset=11 xadvance=19 page=0 chnl=15
|
||||||
|
char id=120 x=134 y=85 width=12 height=15 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=15
|
||||||
|
char id=121 x=239 y=42 width=14 height=20 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=15
|
||||||
|
char id=122 x=120 y=87 width=13 height=15 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15
|
||||||
|
char id=123 x=37 y=0 width=9 height=25 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=15
|
||||||
|
char id=124 x=89 y=0 width=4 height=25 xoffset=1 yoffset=6 xadvance=6 page=0 chnl=15
|
||||||
|
char id=125 x=27 y=0 width=9 height=25 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=15
|
||||||
|
char id=126 x=11 y=106 width=16 height=4 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=15
|
||||||
|
kernings count=91
|
||||||
|
kerning first=32 second=65 amount=-2
|
||||||
|
kerning first=32 second=84 amount=-1
|
||||||
|
kerning first=32 second=89 amount=-1
|
||||||
|
kerning first=121 second=46 amount=-2
|
||||||
|
kerning first=121 second=44 amount=-2
|
||||||
|
kerning first=119 second=46 amount=-2
|
||||||
|
kerning first=119 second=44 amount=-2
|
||||||
|
kerning first=118 second=46 amount=-2
|
||||||
|
kerning first=118 second=44 amount=-2
|
||||||
|
kerning first=114 second=46 amount=-2
|
||||||
|
kerning first=49 second=49 amount=-2
|
||||||
|
kerning first=65 second=32 amount=-2
|
||||||
|
kerning first=65 second=84 amount=-2
|
||||||
|
kerning first=65 second=86 amount=-2
|
||||||
|
kerning first=65 second=87 amount=-1
|
||||||
|
kerning first=65 second=89 amount=-2
|
||||||
|
kerning first=65 second=118 amount=-1
|
||||||
|
kerning first=65 second=119 amount=-1
|
||||||
|
kerning first=65 second=121 amount=-1
|
||||||
|
kerning first=114 second=44 amount=-2
|
||||||
|
kerning first=70 second=44 amount=-3
|
||||||
|
kerning first=70 second=46 amount=-3
|
||||||
|
kerning first=70 second=65 amount=-2
|
||||||
|
kerning first=76 second=32 amount=-1
|
||||||
|
kerning first=76 second=84 amount=-2
|
||||||
|
kerning first=76 second=86 amount=-2
|
||||||
|
kerning first=76 second=87 amount=-2
|
||||||
|
kerning first=76 second=89 amount=-2
|
||||||
|
kerning first=76 second=121 amount=-1
|
||||||
|
kerning first=102 second=102 amount=-1
|
||||||
|
kerning first=80 second=32 amount=-1
|
||||||
|
kerning first=80 second=44 amount=-4
|
||||||
|
kerning first=80 second=46 amount=-4
|
||||||
|
kerning first=80 second=65 amount=-2
|
||||||
|
kerning first=82 second=84 amount=-1
|
||||||
|
kerning first=82 second=86 amount=-1
|
||||||
|
kerning first=82 second=87 amount=-1
|
||||||
|
kerning first=82 second=89 amount=-1
|
||||||
|
kerning first=84 second=32 amount=-1
|
||||||
|
kerning first=84 second=44 amount=-3
|
||||||
|
kerning first=84 second=45 amount=-2
|
||||||
|
kerning first=84 second=46 amount=-3
|
||||||
|
kerning first=84 second=58 amount=-3
|
||||||
|
kerning first=89 second=118 amount=-2
|
||||||
|
kerning first=84 second=65 amount=-2
|
||||||
|
kerning first=84 second=79 amount=-1
|
||||||
|
kerning first=84 second=97 amount=-3
|
||||||
|
kerning first=84 second=99 amount=-3
|
||||||
|
kerning first=84 second=101 amount=-3
|
||||||
|
kerning first=84 second=105 amount=-1
|
||||||
|
kerning first=84 second=111 amount=-3
|
||||||
|
kerning first=84 second=114 amount=-1
|
||||||
|
kerning first=84 second=115 amount=-3
|
||||||
|
kerning first=84 second=117 amount=-1
|
||||||
|
kerning first=84 second=119 amount=-2
|
||||||
|
kerning first=84 second=121 amount=-2
|
||||||
|
kerning first=86 second=44 amount=-3
|
||||||
|
kerning first=86 second=45 amount=-2
|
||||||
|
kerning first=86 second=46 amount=-3
|
||||||
|
kerning first=86 second=58 amount=-1
|
||||||
|
kerning first=89 second=117 amount=-2
|
||||||
|
kerning first=86 second=65 amount=-2
|
||||||
|
kerning first=86 second=97 amount=-2
|
||||||
|
kerning first=86 second=101 amount=-2
|
||||||
|
kerning first=86 second=105 amount=-1
|
||||||
|
kerning first=86 second=111 amount=-2
|
||||||
|
kerning first=86 second=114 amount=-1
|
||||||
|
kerning first=86 second=117 amount=-1
|
||||||
|
kerning first=86 second=121 amount=-1
|
||||||
|
kerning first=87 second=44 amount=-2
|
||||||
|
kerning first=87 second=45 amount=-1
|
||||||
|
kerning first=87 second=46 amount=-2
|
||||||
|
kerning first=87 second=58 amount=-1
|
||||||
|
kerning first=89 second=113 amount=-3
|
||||||
|
kerning first=87 second=65 amount=-1
|
||||||
|
kerning first=87 second=97 amount=-1
|
||||||
|
kerning first=87 second=101 amount=-1
|
||||||
|
kerning first=89 second=112 amount=-2
|
||||||
|
kerning first=87 second=111 amount=-1
|
||||||
|
kerning first=87 second=114 amount=-1
|
||||||
|
kerning first=87 second=117 amount=-1
|
||||||
|
kerning first=89 second=111 amount=-3
|
||||||
|
kerning first=89 second=32 amount=-1
|
||||||
|
kerning first=89 second=44 amount=-4
|
||||||
|
kerning first=89 second=45 amount=-3
|
||||||
|
kerning first=89 second=46 amount=-4
|
||||||
|
kerning first=89 second=58 amount=-2
|
||||||
|
kerning first=89 second=105 amount=-1
|
||||||
|
kerning first=89 second=65 amount=-2
|
||||||
|
kerning first=89 second=97 amount=-2
|
||||||
|
kerning first=89 second=101 amount=-3
|
||||||
|
After Width: | Height: | Size: 4.4 KiB |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/assets_group_10_25_1757046143.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/assets_group_3_25_1757046136.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/assets_group_6_25_1757046135.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/assets_group_9_25_1757046143.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/assets_info_1757046189.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/config_1_25_1756777905.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/config_2_25_1755682869.data
generated
Normal file
|
After Width: | Height: | Size: 241 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 249 B |
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_10000_25_1755682872.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_10001_25_1755682873.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_10002_25_1755682874.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_10003_25_1755682872.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_10004_25_1755682872.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_10005_25_1755682873.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_10006_25_1755682872.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_10007_25_1755682872.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_30000_25_1755682869.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_30001_25_1755682869.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_30002_25_1755682869.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_41_25_1757046158.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/icons_5_25_1757046135.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/laneprofile_1_25_1755682869.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/laneprofile_low_1_25_1755682869.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/laneprofile_mid_1_25_1755682869.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/lineround.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/mapfeatureprofile_1_25_1757046099.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/mapprofile_1_25_1755682869.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/mapprofile_2_25_1755682869.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/search_scenic_icon.data
generated
Normal file
BIN
Pods/AMap3DMap/MAMapKit.framework/AMap.bundle/AMap3D.bundle/sky_hd_powersaving.data
generated
Normal file
|
After Width: | Height: | Size: 107 B |