-
Notifications
You must be signed in to change notification settings - Fork 7
/
image.go
47 lines (39 loc) · 1.14 KB
/
image.go
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
package gositemap
import "encoding/xml"
type image struct {
XMLName xml.Name `xml:"image:image"`
Loc string `xml:"image:loc"`
Caption string `xml:"image:caption,omitempty"`
GeoLocation string `xml:"image:geo_location,omitempty"`
Title string `xml:"image:title,omitempty"`
License string `xml:"image:license,omitempty"`
}
func NewImage() *image {
return &image{}
}
// 图片的网址。某些情况下,图片网址可能与您的主网站不在同一个网域中
// loc是网页的地址,这里是图片的访问路径
func (i *image) SetLoc(loc string) *image {
i.Loc = loc
return i
}
// 图片的说明
func (i *image) SetCaption(caption string) *image {
i.Caption = caption
return i
}
// 图片的地理位置。例如 <image:geo_location>Limerick, Ireland</image:geo_location>。
func (i *image) SetGeoLocation(geoLocation string) *image {
i.GeoLocation = geoLocation
return i
}
// 图片的标题。
func (i *image) SetTitle(title string) *image {
i.Title = title
return i
}
// 图片的授权许可所在的网址。
func (i *image) SetLicense(license string) *image {
i.License = license
return i
}