برثتون (كورنوال)

<td colspan="2" style="text-align:center;background-color:#F9F9F9;color:#000000;">
برثتون

<tr>









<td colspan="2" style="text-align:center;background-color:#F9F9F9;color:#000000;">

<graph>

{

// // ATTENTION: This code is maintained at https://www.mediawiki.org/wiki/Template:Graph:Street_map_with_marks // Please do not modify it anywhere else, as it may get copied and override your changes. // Suggestions can be made at https://www.mediawiki.org/wiki/Template_talk:Graph:Street_map_with_marks // // Template translation is in https://commons.wikimedia.org/wiki/Data:Original/Template:Graphs.tab // "version": 2, "width":280, "height": 250, "padding": 0, "signals":[ // These signals allow us to quickly move the map within the image, e.g. to leave space for the legend

{"name":"legendWidth", "init": {"expr": "0"} },

{"name":"legendHeight", "init": {"expr": "height"} }, {"name":"imgWidth", "init": {"expr": "width-legendWidth"} }, {"name":"imgHeight", "init": {"expr": "height"} }, {"name":"imgXC", "init": {"expr": "imgWidth/2"} }, {"name":"imgYC", "init": {"expr": "imgHeight/2"} }, {"name":"imgTileSize", "init": {"expr": "256"} }, {"name":"imgLat", "init": {"expr": "50.2823"} }, {"name":"imgLon", "init": {"expr": "-5.23682"} }, {"name":"imgZoom", "init": {"expr": "5"} }, {"name":"picWidth", "init": {"expr": "180"} }, {"name":"picHeight", "init": {"expr": "picWidth/2"} }, {"name":"picXC", "init": {"expr": "imgWidth-(picWidth/2)"} }, {"name":"picYC", "init": {"expr": "imgHeight-(picHeight/2)"} }, {"name":"showMiniMap", "init": {"expr": "0"} }, ], "data": [ { "name": "data",

// Otherwise use the first unnamed argument for source values

"values": [

{ "lat": 50.2823,

"lon": -5.23682, "img": "wikirawupload://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Mapscaleline.svg/120px-Mapscaleline.svg.png", "width": 50, "height": 8, "offsetX": 103, "offsetY": 115, "textAlign": "right", "textDx": 22, "textDy": -2, "textColor": "grey", "textFont": "Tahoma", "textFontSize": 9, "text": "200km" }

, { "lat": 50.2823, "lon": -5.23682, "img": "wikirawupload://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Red_pog.svg/8px-Red_pog.svg.png", "height": 8, "width": 8, "text": "", "textAlign": "right", "textBaseline": "middle", "textDx": -6, "textDy": 0+1, "textFontSize": 14


}









], "transform": [ { "type": "geo", "projection": "mercator", "scale": {"expr": "imgTileSize/PI/2*pow(2,imgZoom)"}, "translate": [{"expr": "imgXC"}, {"expr": "imgYC"}], "center": [{"expr": "imgLon"}, {"expr": "imgLat"}], "lon": "lon", "lat": "lat" }, { "type": "formula", "field":"layout_x", "expr": "datum.layout_x + (datum.offsetX || 0)" }, { "type": "formula", "field":"layout_y", "expr": "datum.layout_y + (datum.offsetY || 0)" }, { "type": "formula", "field":"color", "expr": "datum.color || '#c33'" }, { "type": "formula", "field":"textColor", "expr": "datum.textColor || datum.color" }, { "type": "formula", "field":"strokeColor", "expr": "datum.strokeColor || '#ffe7e6'" } ] }, { // Hack: single value data source for drawing/hiding images and other non-series elements "name": "dummyData", "values": [{}] } ],

// Legend only works if showLegend and colorScaleField are set

"marks": [ { "type": "image", "from": { "data": "dummyData", "transform": [ { "type": "formula", "field":"url", "expr": "'mapsnapshot:///?width='+imgWidth+'&height='+imgHeight+'&zoom='+imgZoom+'&lat='+imgLat+'&lon='+imgLon" } ] }, "properties": { "enter": { "url": {"field": "url"}, "xc": {"signal": "imgXC"}, "yc": {"signal": "imgYC"}, "width": {"signal": "imgWidth"}, "height": {"signal": "imgHeight"} } } }, { // Places an image of a given name and size at the [lan,lon] location "type": "image", "from": { "data": "data", "transform": [ { "type": "filter", "test": "datum.img" }, { "type": "formula", "field":"iconWidth", "expr": "datum.width || 0" }, { "type": "formula", "field":"iconHeight", "expr": "datum.height || 0" }, { "type": "formula", "field":"img", "expr": "if(!test(/^[a-z]+:\\/\\//, datum.img), 'wikifile:///'+datum.img, datum.img)" }, // Ensure that either width or height parameter is passed to wikifile:// request { "type": "formula", "field":"img", "expr": "if((datum.iconWidth || datum.iconHeight) && !test(/[?&](width|height)=\\d/, datum.img),if(datum.iconWidth,datum.img+'?width='+datum.iconWidth,datum.img+'?height='+datum.iconHeight), datum.img)" }, ]}, "properties": { "enter": { "url": {"field": "img"}, "xc": {"field": "layout_x"}, "yc": {"field": "layout_y"}, "width": {"field": "iconWidth"}, "height": {"field": "iconHeight"} } } }, { // Draw marks of a given color, shape, and size at the [lan,lon] location "type": "symbol", "from": { "data": "data", "transform": [{ "type": "filter", "test": "!datum.img" }] }, "properties": { "enter": { "x": {"field": "layout_x"}, "y": {"field": "layout_y"}, // If colorScaleField is set, use color scaling, otherwise use the preset color value "fill": { "field": "color" }, "size": {"field": "size"}, "shape": {"field": "shape"}, "stroke": {"field": "strokeColor"} } } }, { // Draw text with the given color and size at the [lan,lon] location // See https://github.com/vega/vega/wiki/Marks#text for all parameter description (prepend "text" and capitalize them) "type": "text", "from": { "data": "data", "transform": [ { "type": "filter", "test": "datum.text" }, // Figure out if this is an LTR or RTL page. For LTR, show label to the right of the icon, left-aligned. For RTL, reverse. { "type": "formula", "field":"isLTR", "expr": "'‏' == '\\u200E'" }, // If these values are not defined ("undefined" is not allowed, so test for truthiness and not 0) { "type": "formula", "field":"textDx", "expr": "if(!datum.textDx && datum.textDx != 0, if(datum.isLTR,8,-8), datum.textDx)" }, { "type": "formula", "field":"textAlign", "expr": "if(!datum.textAlign, if(datum.isLTR,'left','right'), datum.textAlign)" }, { "type": "formula", "field":"textBaseline", "expr": "datum.textBaseline || 'middle'" } ]}, "properties": { "enter": { "text": {"field": "text"}, "x": {"field": "layout_x" }, "y": {"field": "layout_y"}, "dx": {"field": "textDx" }, "dy": {"field": "textDy"}, "fill": {"field": "textColor"}, "align": {"field": "textAlign"}, "baseline": {"field": "textBaseline"}, "radius": {"field": "textRadius"}, "theta": {"field": "textTheta"}, "angle": {"field": "textAngle"}, "font": {"field": "textFont"}, "fontSize": {"field": "textFontSize"}, "fontWeight": {"field": "textFontWeight"}, "fontStyle": {"field": "textFontStyle"} } } }, { // Draw a low-zoom locator map frame "type": "rect", "from": { "data": "dummyData", "transform": [ { "type": "filter", "test": "showMiniMap" } ] }, "properties": { "enter": { "xc": {"signal": "picXC"}, "yc": {"signal": "picYC"}, "width": {"signal": "picWidth", "offset":2}, "height": {"signal": "picHeight"}, "stroke": {"value":"#fff"},"strokeWidth": {"value":6}, } } }, { // Draw a low-zoom locator map by using a premade world map image "type": "image", "from": { "data": "dummyData", "transform": [ { "type": "filter", "test": "showMiniMap" }, { "type": "formula", "field":"url", "expr": "1" } ] }, "properties": { "enter": { "url": {"value": "wikirawupload://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Earthmap1000x500compac.jpg/180px-Earthmap1000x500compac.jpg"}, "xc": {"signal": "picXC"}, "yc": {"signal": "picYC"}, "width": {"signal": "picWidth"}, "height": {"signal": "picHeight"} } } }, { // Draw a zoom-out mark at the [lan,lon] location "type": "symbol", "from": { "data": "dummyData", "transform": [ { "type": "filter", "test": "showMiniMap" }, { "type": "formula", "field":"lat", "expr": "imgLat" }, { "type": "formula", "field":"lon", "expr": "imgLon" }, { "type": "geo", "projection": "equirectangular", "scale": {"expr": "180/2/PI"}, "translate": [{"expr": "picXC"}, {"expr": "picYC"}], "center": [{"expr": "0"}, {"expr": "0"}], "lon": "lon", "lat": "lat" } ] }, "properties": { "enter": { "x": {"field": "layout_x"}, "y": {"field": "layout_y"}, "fill": {"value": "#c33"}, "stroke": {"value": "#ffe7e6"}, "size": {"value": 40} } } } ]

} </graph>

<maplink zoom="6" latitude="50.2823" longitude="-5.23682" text="[كامل الشاشة]">

[


{"type": "FeatureCollection",

"features": [

















] } ]</maplink>

تصنيف:صفحات بها بيانات ويكي بياناتتصنيف:خريطة موقع من ويكي بيانات

<tr>

<td colspan="2" style="text-align:center;background-color:#F9F9F9;color:#000000;">إحداثيات: 50°16′56″N 5°14′13″W / 50.2823°N 5.23682°W / 50.2823; -5.23682 P625  تصنيف:إحداثيات من ويكي بيانات625 تعديل قيمة خاصية الإحداثيات (P625) في ويكي بيانات <tr>













<th style="text-align: right; background-color:#F3F3F3; " scope=row >البلد <td style=" ">border المملكة المتحدة P17  تصنيف:بلد من ويكي بيانات17 تعديل قيمة خاصية البلد (P17) في ويكي بيانات <tr>







<th style="text-align: right; background-color:#F3F3F3; " scope=row >التقسيم الأعلى <td style=" ">سانت اغنس P131  تصنيف:تقسيم إداري من ويكي بيانات131 تعديل قيمة خاصية تقع في التقسيم الإداري (P131) في ويكي بيانات <tr>














<th colspan="2" style="text-align:center;background-color:#E1E1E1;color:#000000">

<tr>




















<th colspan="2" style="text-align:center;background-color:#E1E1E1;color:#000000">

<tr>



























<th scope=col colspan="2" style="text-align:center;background-color:#E1E1E1;color:#000000">معلومات أخرى </th> <tr>





<th style="text-align: right; background-color:#F3F3F3; " scope=row >الرمز البريدي <td style=" ">TR4  تصنيف:رمز بريدي من ويكي بيانات281 تعديل قيمة خاصية الرمز البريدي (P281) في ويكي بيانات <tr>




<th style="text-align: right; background-color:#F3F3F3; " scope=row >رمز جيونيمز <td style=" ">8714310  تصنيف:صفحات تستخدم خاصية P15661566 تعديل قيمة خاصية معرف جيونيمز (GeoNames) (P1566) في ويكي بيانات <tr>

























<td class="navigation-only" colspan="2" style="border-top: 2px #E1E1E1 dotted; font-size: 80%; background:inherit; text-align: left;">تعديل طالع توثيق القالب</td>

برثتون (كورنوال) (بالإنجليزية: Porthtowanتصنيف:مقالات تحتوي نصا بالإنجليزية) هي قرية تقع في المملكة المتحدة في كورنوال.

انظر أيضاً

  • قائمة مدن المملكة المتحدة

مراجع

  • link=بوابة:تجمعات سكانيةبوابة تجمعات سكانية
  • link=بوابة:جغرافيابوابة جغرافيا
  • link=بوابة:المملكة المتحدةبوابة المملكة المتحدة
تصنيف:بوابة تجمعات سكانية/مقالات متعلقةتصنيف:بوابة جغرافيا/مقالات متعلقةتصنيف:بوابة المملكة المتحدة/مقالات متعلقة

تصنيف:قالب تصنيف كومنز بوصلة كما في ويكي بيانات

25بك
هذه بذرة مقالة عن موقع جغرافي في كورنوال بحاجة للتوسيع. شارك في تحريرها.تصنيف:بذرة جغرافيا كورنوالتصنيف:جميع مقالات البذور

تصنيف:قرى كورنوال


المدرجة في الفئات التالية:
شواطئ, تصفح المواقع
مرحلة ما بعد تعليق
نصائح وتلميحات
ترتيب بواسطة:
Volcom Stone
2014 March 27
Get Ready! Next week-end, April 5th and 6th, Volcom Totally Crustaceous Tour is in Porthtowan, Cornwall. Free registration, food&drinks+loads of prizes and giveaways! More info: http://vol.cm/1paBEzd
Avradeep Chakrabarti
2021 May 11
Looks like a great beach for surfing and body boarding
Beth Gossip
2022 August 21
Wild, huge beach, great for spending the day or taking a walk.
Kernow Bodyboarding
2011 أبريل 20
Low Tide: Can get really good, hollow barrels. High Tide: Wedges a little of the cliff. Good fun.
Chris Brown
2013 November 30
Afternoon view to wash the week away!
Elizabeth Grinnell
2014 May 24
Winning the Lottery an buying a holiday home!!
8.7/10
24,997 كان الناس هنا
خريطة
13 W Cliff, Porthtowan, Truro TR4 8TZ، المملكة المتحدة الحصول على الاتجاهات
Tue 11:00 AM–Noon
Wed 9:00 AM–7:00 PM
Thu 10:00 AM–11:00 AM
Fri 11:00 AM–5:00 PM
Sat 9:00 AM–7:00 PM
Sun 24 Hours

Porthtowan Beach على Foursquare

برثتون (كورنوال) على Facebook

الفنادق القريبة

عرض جميع الفنادق اظهار الكل
Penventon Park Hotel

بدءا من $129

Rose in Vale Country House Hotel

بدءا من $159

Premier Inn Camborne

بدءا من $0

Beacon Country House Hotel

بدءا من $129

Portreath Arms Hotel

بدءا من $71

The Porthvean

بدءا من $98

أوصت مشاهد القريبة

اظهار الكل اظهار الكل
أضف إلى قائمة الامنيات
لقد كنت هنا
زار
Poldice mine

Poldice mine is a former mine located in Poldice Valley in south-west

أضف إلى قائمة الامنيات
لقد كنت هنا
زار
Wheal Jane

Wheal Jane was a tin mine near Baldhu and Chacewater in West Cornwall,

أضف إلى قائمة الامنيات
لقد كنت هنا
زار
Truro Cathedral

The Cathedral of the Blessed Virgin Mary, Truro is an Anglican

أضف إلى قائمة الامنيات
لقد كنت هنا
زار
Wheal Coates

Wheal Coates is a former tin mine situated on the north coast of

أضف إلى قائمة الامنيات
لقد كنت هنا
زار
Dolcoath mine

Dolcoath mine was a copper and tin mine in Camborne, Cornwall, in the

أضف إلى قائمة الامنيات
لقد كنت هنا
زار
South Wheal Frances Mine

South Wheal Frances is a former mine accessing the copper and tin of

أضف إلى قائمة الامنيات
لقد كنت هنا
زار
برنبرث (كورنوال)

برنبرث

أضف إلى قائمة الامنيات
لقد كنت هنا
زار
King Edward Mine

The King Edward Mine at Camborne, Cornwall, in the United Kingdom is a

مناطق الجذب السياحي مماثلة

اظهار الكل اظهار الكل
أضف إلى قائمة الامنيات
لقد كنت هنا
زار
Sunset Beach (Oahu)

Sunset Beach is on the North Shore of Oahu in Hawaii and known for big

أضف إلى قائمة الامنيات
لقد كنت هنا
زار
شاطئ الجميرة

تصنيف:مقالات غير مراجعة منذ يوليو 2016تصنيف:جميع المقالات غير

أضف إلى قائمة الامنيات
لقد كنت هنا
زار
The Wedge (surfing)

The Wedge is a spot located at the extreme east end of the Balboa

أضف إلى قائمة الامنيات
لقد كنت هنا
زار
Swami's

Swami's, also known as 'Swami’s Reef'' and 'Swamis', is an i

أضف إلى قائمة الامنيات
لقد كنت هنا
زار
Barra da Tijuca Beach

Den här artikeln har skapats av Lsjbot, ett program (en robot) för a

الاطلاع على كل الأماكن متشابهة