[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2023-08-02 (世界標準時間)。"],[[["URLs can only contain a specific set of ASCII characters and some reserved characters, requiring encoding of other characters."],["URL encoding involves replacing unsafe characters with a '%' followed by their two-digit hexadecimal UTF-8 representation."],["Characters like spaces, quotation marks, less than, greater than, hash, percent, and pipe often require URL encoding."],["Building URLs programmatically using platform libraries is recommended for automatic and proper encoding."],["Google Maps Platform web services and static web APIs have a URL character limit of 16384."]]],["URLs require encoding because they only accept a specific subset of ASCII characters. Special characters, like spaces and foreign language characters, must be encoded using percent encoding (e.g., `%20` for space) or plus signs in specific instances. Reserved characters, such as `=`, `?`, and `|`, also need encoding when used literally, not as control characters. It's best to utilize platform URL building libraries for automatic encoding, guaranteeing proper escaping, because it can be complex to do manually. It is also important to note that URLs are limited to 16384 characters for Google Maps Platform web services.\n"]]