Spaces:
Configuration error
Configuration error
File size: 9,553 Bytes
36f2866 5bd9932 36f2866 5bd9932 36f2866 5bd9932 36f2866 5bd9932 36f2866 5bd9932 36f2866 5bd9932 36f2866 5bd9932 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 |
import { Client, Language, TravelMode } from "@googlemaps/google-maps-services-js";
import dotenv from "dotenv";
// 確保環境變數被載入
dotenv.config();
interface SearchParams {
location: { lat: number; lng: number };
radius?: number;
keyword?: string;
openNow?: boolean;
minRating?: number;
}
interface PlaceResult {
name: string;
place_id: string;
formatted_address?: string;
geometry: {
location: {
lat: number;
lng: number;
};
};
rating?: number;
user_ratings_total?: number;
opening_hours?: {
open_now?: boolean;
};
}
interface GeocodeResult {
lat: number;
lng: number;
formatted_address?: string;
place_id?: string;
}
export class GoogleMapsTools {
private client: Client;
private readonly defaultLanguage: Language = Language.zh_TW;
constructor() {
this.client = new Client({});
if (!process.env.GOOGLE_MAPS_API_KEY) {
throw new Error("Google Maps API Key is required");
}
}
async searchNearbyPlaces(params: SearchParams): Promise<PlaceResult[]> {
const searchParams = {
location: params.location,
radius: params.radius || 1000,
keyword: params.keyword,
opennow: params.openNow,
language: this.defaultLanguage,
key: process.env.GOOGLE_MAPS_API_KEY || "",
};
try {
const response = await this.client.placesNearby({
params: searchParams,
});
let results = response.data.results;
// 如果有最低評分要求,進行過濾
if (params.minRating) {
results = results.filter((place) => (place.rating || 0) >= (params.minRating || 0));
}
return results as PlaceResult[];
} catch (error) {
console.error("Error in searchNearbyPlaces:", error);
throw new Error("搜尋附近地點時發生錯誤");
}
}
async getPlaceDetails(placeId: string) {
try {
const response = await this.client.placeDetails({
params: {
place_id: placeId,
fields: ["name", "rating", "formatted_address", "opening_hours", "reviews", "geometry", "formatted_phone_number", "website", "price_level", "photos"],
language: this.defaultLanguage,
key: process.env.GOOGLE_MAPS_API_KEY || "",
},
});
return response.data.result;
} catch (error) {
console.error("Error in getPlaceDetails:", error);
throw new Error("獲取地點詳細資訊時發生錯誤");
}
}
private async geocodeAddress(address: string): Promise<GeocodeResult> {
try {
const response = await this.client.geocode({
params: {
address: address,
key: process.env.GOOGLE_MAPS_API_KEY || "",
language: this.defaultLanguage,
},
});
if (response.data.results.length === 0) {
throw new Error("找不到該地址的位置");
}
const result = response.data.results[0];
const location = result.geometry.location;
return {
lat: location.lat,
lng: location.lng,
formatted_address: result.formatted_address,
place_id: result.place_id,
};
} catch (error) {
console.error("Error in geocodeAddress:", error);
throw new Error("地址轉換座標時發生錯誤");
}
}
private parseCoordinates(coordString: string): GeocodeResult {
const coords = coordString.split(",").map((c) => parseFloat(c.trim()));
if (coords.length !== 2 || isNaN(coords[0]) || isNaN(coords[1])) {
throw new Error("無效的座標格式,請使用「緯度,經度」格式");
}
return { lat: coords[0], lng: coords[1] };
}
async getLocation(center: { value: string; isCoordinates: boolean }): Promise<GeocodeResult> {
if (center.isCoordinates) {
return this.parseCoordinates(center.value);
}
return this.geocodeAddress(center.value);
}
// 新增公開方法用於地址轉座標
async geocode(address: string): Promise<{
location: { lat: number; lng: number };
formatted_address: string;
place_id: string;
}> {
try {
const result = await this.geocodeAddress(address);
return {
location: { lat: result.lat, lng: result.lng },
formatted_address: result.formatted_address || "",
place_id: result.place_id || "",
};
} catch (error) {
console.error("Error in geocode:", error);
throw new Error("地址轉換座標時發生錯誤");
}
}
async reverseGeocode(
latitude: number,
longitude: number
): Promise<{
formatted_address: string;
place_id: string;
address_components: any[];
}> {
try {
const response = await this.client.reverseGeocode({
params: {
latlng: { lat: latitude, lng: longitude },
language: this.defaultLanguage,
key: process.env.GOOGLE_MAPS_API_KEY || "",
},
});
if (response.data.results.length === 0) {
throw new Error("找不到該座標的地址");
}
const result = response.data.results[0];
return {
formatted_address: result.formatted_address,
place_id: result.place_id,
address_components: result.address_components,
};
} catch (error) {
console.error("Error in reverseGeocode:", error);
throw new Error("座標轉換地址時發生錯誤");
}
}
async calculateDistanceMatrix(
origins: string[],
destinations: string[],
mode: "driving" | "walking" | "bicycling" | "transit" = "driving"
): Promise<{
distances: any[][];
durations: any[][];
origin_addresses: string[];
destination_addresses: string[];
}> {
try {
const response = await this.client.distancematrix({
params: {
origins: origins,
destinations: destinations,
mode: mode as TravelMode,
language: this.defaultLanguage,
key: process.env.GOOGLE_MAPS_API_KEY || "",
},
});
const result = response.data;
if (result.status !== "OK") {
throw new Error(`距離矩陣計算失敗: ${result.status}`);
}
const distances: any[][] = [];
const durations: any[][] = [];
result.rows.forEach((row: any) => {
const distanceRow: any[] = [];
const durationRow: any[] = [];
row.elements.forEach((element: any) => {
if (element.status === "OK") {
distanceRow.push({
value: element.distance.value,
text: element.distance.text,
});
durationRow.push({
value: element.duration.value,
text: element.duration.text,
});
} else {
distanceRow.push(null);
durationRow.push(null);
}
});
distances.push(distanceRow);
durations.push(durationRow);
});
return {
distances: distances,
durations: durations,
origin_addresses: result.origin_addresses,
destination_addresses: result.destination_addresses,
};
} catch (error) {
console.error("Error in calculateDistanceMatrix:", error);
throw new Error("計算距離矩陣時發生錯誤");
}
}
async getDirections(
origin: string,
destination: string,
mode: "driving" | "walking" | "bicycling" | "transit" = "driving"
): Promise<{
routes: any[];
summary: string;
total_distance: { value: number; text: string };
total_duration: { value: number; text: string };
}> {
try {
const response = await this.client.directions({
params: {
origin: origin,
destination: destination,
mode: mode as TravelMode,
language: this.defaultLanguage,
key: process.env.GOOGLE_MAPS_API_KEY || "",
},
});
const result = response.data;
if (result.status !== "OK") {
throw new Error(`路線指引獲取失敗: ${result.status}`);
}
if (result.routes.length === 0) {
throw new Error("找不到路線");
}
const route = result.routes[0];
const legs = route.legs[0];
return {
routes: result.routes,
summary: route.summary,
total_distance: {
value: legs.distance.value,
text: legs.distance.text,
},
total_duration: {
value: legs.duration.value,
text: legs.duration.text,
},
};
} catch (error) {
console.error("Error in getDirections:", error);
throw new Error("獲取路線指引時發生錯誤");
}
}
async getElevation(locations: Array<{ latitude: number; longitude: number }>): Promise<Array<{ elevation: number; location: { lat: number; lng: number } }>> {
try {
const formattedLocations = locations.map((loc) => ({
lat: loc.latitude,
lng: loc.longitude,
}));
const response = await this.client.elevation({
params: {
locations: formattedLocations,
key: process.env.GOOGLE_MAPS_API_KEY || "",
},
});
const result = response.data;
if (result.status !== "OK") {
throw new Error(`海拔數據獲取失敗: ${result.status}`);
}
return result.results.map((item: any, index: number) => ({
elevation: item.elevation,
location: formattedLocations[index],
}));
} catch (error) {
console.error("Error in getElevation:", error);
throw new Error("獲取海拔數據時發生錯誤");
}
}
}
|