-
Notifications
You must be signed in to change notification settings - Fork 1
/
pictures of a location.txt
36 lines (33 loc) · 1.14 KB
/
pictures of a location.txt
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
TO PUT IN HEAD:
//-----------------------------------------------------------------
<head>
<style type="text/css">
#wapiblock .panoramio-wapi-images {
background-color: white;
}
#wapiblock .panoramio-wapi-tos {
background-color: white !important;
}
</style>
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB6rECnUtSIQA1EGyP6LKatsBY2-sDFIgk&sensor=true">
</script>
<script type="text/javascript" src="http://www.panoramio.com/wapi/wapi.js?v=1"></script>
<script src="https://maps.googleapis.com/maps/api/js?libraries=panoramio&sensor=false"></script>
</head>
//------------------------------------------------------------------
TO PUT IN BODY:
//-------------------------------------------------------
<div id="wapiblock"></div>
<script type="text/javascript">
var place = 'big ben';
var myWidget = new panoramio.PhotoWidget('wapiblock', {'tag': place}, myOptions);
myWidget.setPosition(0);
var myOptions = {
'width': 300,
'height': 200
};
</script>
//------------------------------------------------------
</body>
</html>